本文整理汇总了C++中END_SECTION::apply方法的典型用法代码示例。如果您正苦于以下问题:C++ END_SECTION::apply方法的具体用法?C++ END_SECTION::apply怎么用?C++ END_SECTION::apply使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类END_SECTION
的用法示例。
在下文中一共展示了END_SECTION::apply方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: p
TEST_EQUAL(copy.getName(), e_ptr->getName())
END_SECTION
START_SECTION((NeutralLossDiffFilter& operator = (const NeutralLossDiffFilter& source)))
NeutralLossDiffFilter copy;
copy = *e_ptr;
TEST_EQUAL(copy.getParameters(), e_ptr->getParameters())
TEST_EQUAL(copy.getName(), e_ptr->getName())
END_SECTION
START_SECTION((template<typename SpectrumType> double apply(SpectrumType& spectrum)))
DTAFile dta_file;
PeakSpectrum spec;
dta_file.load(OPENMS_GET_TEST_DATA_PATH("Transformers_tests.dta"), spec);
double filter = e_ptr->apply(spec);
TEST_REAL_SIMILAR(filter, 429.0)
Param p(e_ptr->getParameters());
p.setValue("tolerance", 10.0);
e_ptr->setParameters(p);
filter = e_ptr->apply(spec);
TEST_REAL_SIMILAR(filter, 2482.5)
END_SECTION
START_SECTION((static FilterFunctor* create()))
FilterFunctor* ff = NeutralLossDiffFilter::create();
NeutralLossDiffFilter filter;
TEST_EQUAL(ff->getParameters(), filter.getParameters())
TEST_EQUAL(ff->getName(), filter.getName())
END_SECTION