28 #include "boost/filesystem/path.hpp"
29 #include "boost/filesystem/fstream.hpp"
32 using namespace pwiz::analysis;
33 using namespace pwiz::msdata;
34 using namespace pwiz::util;
35 using namespace pwiz::data;
36 namespace bfs = boost::filesystem;
100 818.9136, 13756.5684,
101 818.9177, 18748.5176,
102 818.9217, 18208.9883,
103 818.9258, 12877.9766,
271 821.4019, 19850.8086,
272 821.4060, 46906.4688,
273 821.4100, 68569.3750,
274 821.4141, 68448.7812,
275 821.4182, 46811.6289,
276 821.4223, 19901.8672,
296 821.9047, 23122.4727,
297 821.9088, 47305.5195,
298 821.9128, 62059.1055,
299 821.9169, 55725.9336,
300 821.9210, 33587.5078,
301 821.9251, 11589.8770,
322 822.4080, 15413.5098,
323 822.4121, 23855.4492,
324 822.4162, 25214.1484,
325 822.4203, 19019.5293,
391 if (
os_) *
os_ <<
"test()\n" << flush;
410 initialEstimate.
mz = 821.92;
411 vector<PrecursorRecalculator::PrecursorInfo> result;
423 if (
os_) *
os_ <<
"test2()\n" << flush;
442 initialEstimate.
mz = 821.92;
443 vector<PrecursorRecalculator::PrecursorInfo> result;
454 vector<MZIntensityPair>
readData(
const bfs::path& filename)
458 bfs::ifstream is(filename);
459 if (!is)
throw runtime_error((
"[PrecursorRecalculatorDefaultTest::readData()] Unable to open file " + filename.string()).c_str());
470 encoder.
decode(encoded, data);
473 vector<MZIntensityPair> result(data.size()/2);
474 copy(data.begin(), data.end(),
reinterpret_cast<double*
>(&result[0]));
506 : mzInitialEstimate(_mzInitialEstimate),
508 chargeTrue(_chargeTrue)
523 vector<PrecursorRecalculator::PrecursorInfo> result;
524 pr.
recalculate(begin, end, initialEstimate, result);
529 for (vector<PrecursorRecalculator::PrecursorInfo>::const_iterator it=result.begin(), end=result.end(); it!=end; ++it)
530 *
os_ <<
" " << it->mz <<
" " << it->charge << endl;
540 if (
os_) *
os_ <<
"test5peptide()\n" << flush;
542 vector<MZIntensityPair> data =
readData(datadir /
"5peptide.b64");
571 vector<MZIntensityPair> data =
readData(filename);
620 int main(
int argc,
char* argv[])
626 bfs::path datadir =
".";
628 for (
int i=1; i<argc; i++)
630 if (!strcmp(argv[i],
"-v"))
636 datadir = bfs::path(argv[i]).branch_path();