ProteoWizard
Classes | Functions | Variables
FrequencyEstimatorPhysicalModelTest.cpp File Reference
#include "FrequencyEstimatorPhysicalModel.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"

Go to the source code of this file.

Classes

struct  Datum

Functions

void test ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0
Datum data_ []
const int dataSize_ = sizeof(data_)/sizeof(Datum)

Function Documentation

void test ( )

Definition at line 73 of file FrequencyEstimatorPhysicalModelTest.cpp.

References pwiz::data::FrequencyData::analyze(), pwiz::data::peakdata::Peak::attributes, pwiz::data::FrequencyData::data(), data_, dataSize_, e(), pwiz::frequency::FrequencyEstimatorPhysicalModel::estimate(), pwiz::data::FrequencyData::max(), pwiz::data::FrequencyData::observationDuration(), os_, and unit_assert_equal.

{
if (os_) *os_ << setprecision(14);
// initialize frequency data
for (const Datum* p=data_; p!=data_+dataSize_; ++p)
fd.data().push_back(FrequencyDatum(p->frequency, p->intensity));
fd.analyze();
// "peak detection"
Peak detected;
detected.attributes[Peak::Attribute_Frequency] = fd.max()->x;
if (os_) *os_ << "detected: " << detected << endl;
// create estimator
auto_ptr<FrequencyEstimatorPhysicalModel> fe(FrequencyEstimatorPhysicalModel::create(config));
// get estimate and check answer
Peak estimate = fe->estimate(fd, detected);
if (os_) *os_ << "estimate: " << estimate << endl;
unit_assert_equal(estimate.attributes[Peak::Attribute_Frequency], 159454.98465, 1e-4);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 105 of file FrequencyEstimatorPhysicalModelTest.cpp.

References e(), os_, test(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
if (os_) *os_ << "FrequencyEstimatorPhysicalModelTest\n";
test();
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 34 of file FrequencyEstimatorPhysicalModelTest.cpp.

Datum data_[]
Initial value:
{
{159442.7083, complex<double>(4877.101315, 44697.12422)},
{159444.0104, complex<double>(4080.603141, 50558.42071)},
{159445.3125, complex<double>(6577.789977, 58423.29765)},
{159446.6146, complex<double>(12831.99571, 62206.40467)},
{159447.9167, complex<double>(12432.57475, 78692.36757)},
{159449.2188, complex<double>(14863.21774, 97002.26961)},
{159450.5208, complex<double>(20799.47308, 118598.6778)},
{159451.8229, complex<double>(22593.31198, 165638.8917)},
{159453.125, complex<double>(47599.33584, 277486.3998)},
{159454.4271, complex<double>(286144.9904, 833086.4972)},
{159455.7292, complex<double>(185071.6796, -646557.3157)},
{159457.0312, complex<double>(-17704.58144, -233633.2989)},
{159458.3333, complex<double>(12582.54006, -142740.2498)},
{159459.6354, complex<double>(-4281.026921, -119490.1607)},
{159460.9375, complex<double>(-2407.375413, -104118.8209)},
{159462.2396, complex<double>(-6020.466709, -71343.6045)},
{159463.5417, complex<double>(-6861.637568, -64726.61834)},
{159464.8438, complex<double>(4448.264865, -50486.19487)},
{159466.1458, complex<double>(-2683.225884, -43254.46692)},
{159467.4479, complex<double>(-1409.582306, -46362.11256)},
{159468.75, complex<double>(-901.9171424, -39197.02914)},
}

Definition at line 44 of file FrequencyEstimatorPhysicalModelTest.cpp.

Referenced by pwiz::frequency::ParametrizedFunction< value_type >::ErrorFunction::dp(), pwiz::frequency::ParametrizedFunction< value_type >::ErrorFunction::dp2(), initialize(), pwiz::frequency::ParametrizedFunction< value_type >::ErrorFunction::operator()(), test(), testData2_LocalMax(), testData2_Parabola(), and testFind().

const int dataSize_ = sizeof(data_)/sizeof(Datum)