ProteoWizard
Classes | Functions | Variables
ParamTypesTest.cpp File Reference
#include "ParamTypes.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include <cstring>

Go to the source code of this file.

Classes

class  WriteCVParam

Functions

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

Variables

ostream * os_ = 0
const char * mzmlScanTime = "unitAccession=\"UO:0000031\" unitName=\"minute\"/>\n"
const char * mzmlCollisionEnergy = "unitAccession=\"UO:0000266\" unitName=\"electronvolt\"/>\n"

Function Documentation

void test ( )

Definition at line 75 of file ParamTypesTest.cpp.

References e(), MS_collision_energy, MS_deisotoping, MS_highest_observed_m_z, MS_lowest_observed_m_z, MS_m_z, MS_peak_picking, MS_scan_start_time, mzmlCollisionEnergy, mzmlScanTime, os_, pwiz::data::CVParam::timeInSeconds(), unit_assert, unit_assert_equal, UO_electronvolt, UO_minute, and pwiz::msdata::id::value().

{
vector<CVParam> params;
params.push_back(CVParam(MS_lowest_observed_m_z, 420));
params.push_back(CVParam(MS_highest_observed_m_z, 2000.012345));
params.push_back(CVParam(MS_m_z, "goober"));
params.push_back(CVParam(MS_scan_start_time, 5.890500, UO_minute));
params.push_back(CVParam(MS_collision_energy, 35.00, UO_electronvolt));
params.push_back(CVParam(MS_deisotoping, true));
params.push_back(CVParam(MS_peak_picking, false));
if (os_)
{
*os_ << "params:\n";
copy(params.begin(), params.end(), ostream_iterator<CVParam>(*os_, "\n"));
*os_ << endl;
*os_ << "as mzML <cvParam> elements:\n";
for_each(params.begin(), params.end(), WriteCVParam(*os_));
*os_ << endl;
*os_ << "value casting:\n";
int temp = params[0].valueAs<int>();
*os_ << temp << endl;
float temp2 = params[1].valueAs<float>();
*os_ << temp2 << endl;
string temp3 = params[2].valueAs<string>();
*os_ << temp3 << "\n\n";
}
// verify simple things
unit_assert(420 == params[0].valueAs<int>());
unit_assert(2000.012345 == params[1].valueAs<double>());
unit_assert("goober" == params[2].value);
unit_assert(5.890500 == params[3].valueAs<double>());
unit_assert(35.00 == params[4].valueAs<double>());
unit_assert(params[5].valueAs<bool>() == true);
unit_assert(params[6].valueAs<bool>() == false);
// verify manual mzml writing -- this is to verify that we have enough
// info to write <cvParam> elements as required by mzML
ostringstream ossScanTime;
CVParam scanTime(MS_scan_start_time, "5.890500", UO_minute);
(WriteCVParam(ossScanTime))(scanTime);
if (os_) *os_ << "mzmlScanTime: " << mzmlScanTime << endl
<< "ossScanTime: " << ossScanTime.str() << endl;
unit_assert(ossScanTime.str() == mzmlScanTime);
if (os_) *os_ << "scan time in seconds: " << scanTime.timeInSeconds() << endl;
unit_assert_equal(scanTime.timeInSeconds(), 5.8905 * 60, 1e-10);
ostringstream ossCollisionEnergy;
(WriteCVParam(ossCollisionEnergy))(CVParam(MS_collision_energy, "35.00", UO_electronvolt));
if (os_) *os_ << "mzmlCollisionEnergy: " << mzmlCollisionEnergy << endl
<< "ossCollisionEnergy: " << ossCollisionEnergy.str() << endl;
unit_assert(ossCollisionEnergy.str() == mzmlCollisionEnergy);
}
void testIs ( )

Definition at line 138 of file ParamTypesTest.cpp.

References MS_collision_induced_dissociation, MS_lowest_observed_m_z, MS_plasma_desorption, and unit_assert.

Referenced by main().

{
vector<CVParam> params;
params.push_back(CVParam(MS_plasma_desorption));
params.push_back(CVParam(MS_lowest_observed_m_z, 420));
vector<CVParam>::const_iterator it =
find_if(params.begin(), params.end(), CVParamIs(MS_lowest_observed_m_z));
unit_assert(it->value == "420");
}
void testIsChildOf ( )

Definition at line 152 of file ParamTypesTest.cpp.

References pwiz::cv::cvTermInfo(), MS_collision_induced_dissociation, MS_dissociation_method, MS_highest_observed_m_z, MS_lowest_observed_m_z, MS_plasma_desorption, pwiz::cv::CVTermInfo::name, os_, unit_assert, UO_electronvolt, and UO_unit.

Referenced by main().

{
// example of how to search through a collection of CVParams
// to find the first one whose cvid IsA specified CVID
vector<CVParam> params;
params.push_back(CVParam(MS_lowest_observed_m_z, 420));
params.push_back(CVParam(MS_plasma_desorption));
params.push_back(CVParam(UO_electronvolt));
params.push_back(CVParam(MS_highest_observed_m_z, 2400.0));
vector<CVParam>::const_iterator itDiss =
find_if(params.begin(), params.end(), CVParamIsChildOf(MS_dissociation_method));
vector<CVParam>::const_iterator itUnit =
find_if(params.begin(), params.end(), CVParamIsChildOf(UO_unit));
if (os_)
{
*os_ << "find dissociation method: "
<< (itDiss!=params.end() ? cvTermInfo(itDiss->cvid).name : "not found")
<< endl;
*os_ << "find unit: "
<< (itUnit!=params.end() ? cvTermInfo(itUnit->cvid).name : "not found")
<< endl;
}
unit_assert(itDiss!=params.end() && itDiss->cvid==MS_plasma_desorption);
unit_assert(itUnit!=params.end() && itUnit->cvid==UO_electronvolt);
}
void testParamContainer ( )

Definition at line 187 of file ParamTypesTest.cpp.

References pwiz::data::CVParam::cvid, CVID_Unknown, pwiz::data::ParamContainer::cvParam(), pwiz::data::ParamContainer::cvParamChild(), pwiz::data::ParamContainer::cvParamChildren(), pwiz::data::ParamContainer::cvParams, pwiz::data::UserParam::empty(), pwiz::data::ParamContainer::hasCVParam(), pwiz::data::ParamContainer::hasCVParamChild(), MS_CID, MS_deisotoping, MS_dissociation_method, MS_ETD, MS_ionization_type, MS_ms_level, MS_MSn_spectrum, MS_PQD, MS_reflectron_off, MS_reflectron_on, MS_selected_ion_m_z, MS_spectrum_type, pwiz::data::ParamContainer::paramGroupPtrs, pwiz::data::ParamContainer::set(), unit_assert, UO_dalton, UO_mass_unit, UO_minute, UO_second, pwiz::data::ParamContainer::userParam(), pwiz::data::ParamContainer::userParams, pwiz::data::CVParam::value, pwiz::data::CVParam::valueAs(), and pwiz::data::UserParam::valueAs().

{
pc.cvParams.push_back(MS_reflectron_on);
pc.cvParams.push_back(MS_MSn_spectrum);
pc.cvParams.push_back(MS_reflectron_off);
pc.cvParams.push_back(CVParam(MS_ionization_type, 420));
pc.userParams.push_back(UserParam("name1", "1", "type1", UO_second));
pc.userParams.push_back(UserParam("name2", "2", "type2", UO_minute));
pg->cvParams.push_back(CVParam(UO_dalton, 666));
pc.paramGroupPtrs.push_back(pg);
string result = "goober";
unit_assert(result == "");
unit_assert(result == "420");
result = pc.cvParam(UO_dalton).value;
unit_assert(result == "666");
UserParam userParam = pc.userParam("name");
unit_assert(userParam.empty());
userParam = pc.userParam("name1");
unit_assert(userParam.name == "name1");
unit_assert(userParam.valueAs<int>() == 1);
unit_assert(userParam.type == "type1");
unit_assert(userParam.units == UO_second);
userParam = pc.userParam("name2");
unit_assert(userParam.name == "name2");
unit_assert(userParam.valueAs<double>() == 2);
unit_assert(userParam.type == "type2");
unit_assert(userParam.units == UO_minute);
unit_assert(pc.userParam("goober").valueAs<int>() == 0);
pc.set(MS_ms_level, 2);
pc.set(MS_ms_level, 3);
pc.set(MS_deisotoping, true);
unit_assert(pc.cvParam(MS_deisotoping).valueAs<bool>() == true);
pc.set(MS_deisotoping, false);
unit_assert(pc.cvParam(MS_deisotoping).valueAs<bool>() == false);
pc.set(MS_CID);
pc.set(MS_ETD);
pg->set(MS_PQD);
vector<CVParam> dissociationMethods = pc.cvParamChildren(MS_dissociation_method);
unit_assert(dissociationMethods.size() == 3);
unit_assert(dissociationMethods[0] == MS_CID);
unit_assert(dissociationMethods[1] == MS_ETD);
unit_assert(dissociationMethods[2] == MS_PQD);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 260 of file ParamTypesTest.cpp.

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

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

Variable Documentation

ostream* os_ = 0

Definition at line 35 of file ParamTypesTest.cpp.

const char* mzmlScanTime = "unitAccession=\"UO:0000031\" unitName=\"minute\"/>\n"

Definition at line 66 of file ParamTypesTest.cpp.

Referenced by test().

const char* mzmlCollisionEnergy = "unitAccession=\"UO:0000266\" unitName=\"electronvolt\"/>\n"

Definition at line 70 of file ParamTypesTest.cpp.

Referenced by test().