ProteoWizard
MassSpread.hpp
Go to the documentation of this file.
1 //
2 // $Id: MassSpread.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 _MASSSPREAD_H_
25 #define _MASSSPREAD_H_
26 
27 
28 #include <memory>
29 #include <vector>
30 #include <iosfwd>
31 
32 
33 namespace pwiz {
34 namespace calibration {
35 
36 
37 class MassDatabase;
38 
39 
41 {
42  public:
43 
44  struct Pair
45  {
46  double mass;
47  double probability;
48  Pair(double m=0, double p=0) : mass(m), probability(p) {}
49  };
50 
51  // const interface
52  static std::auto_ptr<const MassSpread> create(double measurement,
53  double initialError,
54  const MassDatabase* massDatabase);
55  virtual double measurement() const = 0;
56  virtual double error() const = 0;
57  virtual const std::vector<Pair>& distribution() const = 0;
58  virtual double sumProbabilityOverMass() const = 0;
59  virtual double sumProbabilityOverMass2() const = 0;
60  virtual void output(std::ostream& os) const = 0;
61 
62  // non-const interface
63  // note: must recalculate() sums after changing distribution()
64  static std::auto_ptr<MassSpread> create();
65  virtual std::vector<Pair>& distribution() = 0;
66  virtual void recalculate() = 0;
67 
68  virtual ~MassSpread(){}
69 };
70 
71 
72 std::ostream& operator<<(std::ostream& os, const MassSpread& massSpread);
73 
74 
75 } // namespace calibration
76 } // namespace pwiz
77 
78 
79 #endif // _MASSSPREAD_H_
80