ProteoWizard
SearchNeighborhoodCalculatorTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: SearchNeighborhoodCalculatorTest.cpp 1539 2009-11-19 20:12:28Z khoff $
3 //
4 //
5 // Original author: Kate Hoff <katherine.hoff@proteowizard.org>
6 //
7 // Copyright 2009 Center for Applied Molecular Medicine
8 // University of Southern California, Los Angeles, CA
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 ///
24 /// SearchNeighborhoodCalculatorTest.cpp
25 ///
26 
30 
31 using namespace pwiz::eharmony;
32 using namespace pwiz::util;
33 
34 ostream* os_ = 0;
35 
37 {
38  // TODO
39  // Test that folded normal distribution is correctly calculated from normal distribution parameters
40  // Test that scoring function is correct
41 }
42 
43 void test()
44 {
45  if (os_) *os_ << "test() ..." << endl;
46 
48 
49  SpectrumQuery sq;
50  sq.precursorNeutralMass = 1;
51  sq.assumedCharge = 2;
52  sq.retentionTimeSec = 40;
53 
54  Feature f;
55  f.mz = 1.510;
56  f.retentionTime = 98;
57 
58  unit_assert(snc.close(sq,f));
59  if (os_)
60  {
61  XMLWriter writer(*os_);
62  sq.write(writer);
63  f.write(writer);
64 
65  }
66 }
67 
68 int main(int argc, char* argv[])
69 {
70  try
71  {
72  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
73  if (os_) *os_ << "SearchNeighborhoodCalculatorTest: " << endl;
74  test();
76 
77  }
78 
79  catch (std::exception& e)
80  {
81  cerr << e.what() << endl;
82  return 1;
83 
84  }
85 
86  catch (...)
87  {
88  cerr << "Caught unknown exception.\n";
89  return 1;
90 
91  }
92 
93 }
94