本文整理汇总了C++中PeakSpectrum::rbegin方法的典型用法代码示例。如果您正苦于以下问题:C++ PeakSpectrum::rbegin方法的具体用法?C++ PeakSpectrum::rbegin怎么用?C++ PeakSpectrum::rbegin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PeakSpectrum
的用法示例。
在下文中一共展示了PeakSpectrum::rbegin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: p
START_SECTION((Normalizer& operator = (const Normalizer& source)))
Normalizer 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> void filterSpectrum(SpectrumType& spectrum)))
DTAFile dta_file;
PeakSpectrum spec;
dta_file.load(OPENMS_GET_TEST_DATA_PATH("Transformers_tests.dta"), spec);
spec.sortByIntensity();
TEST_EQUAL(spec.rbegin()->getIntensity(), 46)
e_ptr->filterSpectrum(spec);
spec.sortByIntensity();
TEST_EQUAL(spec.rbegin()->getIntensity(), 1)
Param p(e_ptr->getParameters());
p.setValue("method", "to_TIC");
e_ptr->setParameters(p);
e_ptr->filterSpectrum(spec);
double sum(0);
for (PeakSpectrum::ConstIterator it = spec.begin(); it != spec.end(); ++it)
{