Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
CalibrationData.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2017.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Chris Bielow $
32 // $Authors: Chris Bielow $
33 // --------------------------------------------------------------------------
34 
35 
36 #ifndef OPENMS_DATASTRUCTURES_CALIBRATIONDATA_H
37 #define OPENMS_DATASTRUCTURES_CALIBRATIONDATA_H
38 
41 
42 #include <vector>
43 #include <set>
44 
45 namespace OpenMS
46 {
47 
65  class OPENMS_DLLAPI CalibrationData
66  {
67  public:
68 
70  typedef std::vector<CalDataType>::const_iterator const_iterator;
71  typedef std::vector<CalDataType>::value_type value_type;
72 
77 
81  CalDataType::CoordinateType getMZ(Size i) const;
82 
86  CalDataType::CoordinateType getRT(Size i) const;
87 
91  CalDataType::CoordinateType getIntensity(Size i) const;
92 
96  const_iterator begin() const;
97 
101  const_iterator end() const;
102 
106  Size size() const;
107 
111  bool empty() const;
112 
116  void clear();
117 
121  void setUsePPM(bool usePPM);
122 
126  bool usePPM() const;
127 
138  void insertCalibrationPoint(CalDataType::CoordinateType rt, CalDataType::CoordinateType mz_obs, CalDataType::IntensityType intensity,
139  CalDataType::CoordinateType mz_ref, double weight,
140  int group = -1);
141 
145  Size getNrOfGroups() const;
146 
150  CalDataType::CoordinateType getError(Size i) const;
151 
155  CalDataType::CoordinateType getRefMZ(Size i) const;
156 
160  CalDataType::CoordinateType getWeight(Size i) const;
161 
168  int getGroup(Size i) const;
169 
173  static StringList getMetaValues();
174 
195  CalibrationData median(double rt_left, double rt_right) const;
196 
200  void sortByRT();
201 
202 
203  private:
204  std::vector<RichPeak2D> data_; //< calibration points
205  bool use_ppm_; //< return ppm values as y-values for the model instead of absolute delta in [Th]
206  std::set<int> groups_; //< peak groups present in this data
207  };
208 
209 } // namespace OpenMS
210 
211 #endif // OPENMS_DATASTRUCTURES_CALIBRATIONDATA_H
std::vector< RichPeak2D > data_
Definition: CalibrationData.h:204
bool use_ppm_
Definition: CalibrationData.h:205
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
std::vector< CalDataType >::value_type value_type
Definition: CalibrationData.h:71
A helper class, holding all calibration points.
Definition: CalibrationData.h:65
std::vector< String > StringList
Vector of String.
Definition: ListUtils.h:74
std::vector< CalDataType >::const_iterator const_iterator
Definition: CalibrationData.h:70
static double median(IteratorType begin, IteratorType end, bool sorted=false)
Calculates the median of a range of values.
Definition: StatisticFunctions.h:153
A 2-dimensional raw data point or peak with meta information.
Definition: RichPeak2D.h:53
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:128
RichPeak2D CalDataType
Definition: CalibrationData.h:69
std::set< int > groups_
Definition: CalibrationData.h:206

OpenMS / TOPP release 2.3.0 Documentation generated on Tue Jan 9 2018 18:21:59 using doxygen 1.8.13