ProteoWizard
CalibratorTrial.hpp
Go to the documentation of this file.
1 //
2 // $Id: CalibratorTrial.hpp 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 
24 #ifndef _CALIBRATORTRIAL_HPP_
25 #define _CALIBRATORTRIAL_HPP_
26 
27 
28 #include "Calibrator.hpp"
30 #include <string>
31 #include <vector>
32 #include <memory>
33 
34 
35 namespace pwiz {
36 namespace calibration {
37 
38 
40 {
41  public:
42 
44  {
45  // Calibrator configuration
49  std::string outputDirectory;
50 
51  // trial data
52  std::vector<double> trueMasses;
53  std::vector<Calibrator::Measurement> measurements;
58 
59  Configuration();
60  void readTrialData(const std::string& filename);
61  void writeTrialData(const std::string& filename) const;
62  };
63 
64  struct State
65  {
67  double errorTrue;
68  double errorEstimate;
70  double correct;
71  double confident;
72 
75  {}
76  };
77 
78  struct Results
79  {
81  State final;
82  };
83 
84  static std::auto_ptr<CalibratorTrial> create(const Configuration& configuration);
85  virtual ~CalibratorTrial(){}
86 
87  virtual void run() = 0;
88  virtual const Configuration& configuration() const = 0;
89  virtual const Results& results() const = 0;
90 };
91 
92 
93 std::ostream& operator<<(std::ostream& os, const CalibratorTrial::State& state);
94 
95 
96 } // namespace calibration
97 } // namespace pwiz
98 
99 
100 #endif // _CALIBRATORTRIAL_HPP_
101