ProteoWizard
LeastSquaresCalibratorTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: LeastSquaresCalibratorTest.cpp 1191 2009-08-14 19:33:05Z chambm $
3 //
4 //
5 // Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2009 Spielberg Family Center for Applied Proteomics
8 // Cedars Sinai Medical Center, Los Angeles, California 90048
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 
26 #include <iostream>
27 #include <iomanip>
28 
29 
30 using namespace std;
31 using namespace pwiz::util;
32 using namespace pwiz::calibration;
33 using namespace pwiz::data;
34 
35 
36 void test()
37 {
38  vector<double> trueMasses;
39  trueMasses.push_back(100);
40  trueMasses.push_back(200);
41  trueMasses.push_back(300);
42 
43  CalibrationParameters p = CalibrationParameters::thermo_FT();
44 
45  vector<double> observedFrequencies;
46  for (vector<double>::iterator it=trueMasses.begin(); it!=trueMasses.end(); ++it)
47  observedFrequencies.push_back(p.frequency(*it));
48 
49  auto_ptr<LeastSquaresCalibrator> calibrator = LeastSquaresCalibrator::create(trueMasses,
50  observedFrequencies);
51  calibrator->calibrate();
52 
53  /*
54  cout << setprecision(10) << p << endl;
55  cout << calibrator->parameters() << endl;
56  cout << "error: " << calibrator->error() << endl;
57  */
58 
59  const double epsilon = .2; // not too small since A,B ~ 1e8
60  unit_assert_equal(p.A, calibrator->parameters().A, epsilon);
61  unit_assert_equal(p.B, calibrator->parameters().B, epsilon);
62  unit_assert_equal(0, calibrator->error(), 1e-15);
63 }
64 
65 
66 int main()
67 {
68  try
69  {
70  test();
71  return 0;
72  }
73  catch (exception& e)
74  {
75  cerr << e.what() << endl;
76  return 1;
77  }
78 }
79