OpenMS  2.6.0
CentroidData.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-2020.
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: Timo Sachsenberg $
32 // $Authors: Markus Mueller $
33 // --------------------------------------------------------------------------
34 //
35 /*
36  * CentroidData.h
37  * PeakDetection
38  *
39  * Created by Markus Mueller on 10/19/06.
40  *
41  * Ported to OpenMS by Florian Zeller, florian.zeller@bsse.ethz.ch
42  * December 2010
43  *
44  */
45 
46 #pragma once
47 
48 #include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/SUPERHIRN/SuperHirnConfig.h>
49 
50 #include <OpenMS/CONCEPT/Types.h>
51 
54 
55 #include <list>
56 #include <vector>
57 
58 #include <boost/shared_ptr.hpp>
59 
60 namespace OpenMS
61 {
62 
63  class SUPERHIRN_DLLAPI CentroidData
64  {
65 public:
66 
67  /*
68  static double sfMassTolPpm;
69  static double sfMassTolDa;
70  static double sfMinIntensity;
71  static double sfIntensityFloor;
72  */
73  // debugging parameters => used by other classes :( :( :(
74  /*
75  static bool MonoIsoDebugging;
76  static double DebugMonoIsoMassMin;
77  static double DebugMonoIsoMassMax;
78  */
79 
80  CentroidData(int, boost::shared_ptr<RawData>, bool);
81  CentroidData(int, boost::shared_ptr<RawData>, double, bool);
82  virtual ~CentroidData();
83 
84  void get(std::list<CentroidPeak> &);
85  void set(boost::shared_ptr<RawData>);
86  void set(std::vector<double> &, std::vector<double> &);
87 
88  void setWidth(int pWidth);
89 
90  int getWidth();
91 
92  void setNoise(double);
93  double getNoise();
94 
95  void removeNoise();
96 
97  bool getNextPeakGroup(std::list<CentroidPeak>::iterator &, std::list<CentroidPeak>::iterator &);
98  void resetPeakGroupIter();
99 
101 
102 protected:
103 
104  void calcCentroids(boost::shared_ptr<RawData>);
105 
107  double fNoise;
109  std::list<CentroidPeak> fCentroidPeaks;
110  std::list<CentroidPeak>::iterator fPeakGroupStart;
111  };
112 
113  std::ostream & operator<<(std::ostream &, CentroidData &);
114 
115 } // ns
116 
OpenMS::CentroidData::fPeakGroupStart
std::list< CentroidPeak >::iterator fPeakGroupStart
Definition: CentroidData.h:110
Types.h
CentroidPeak.h
OpenMS::CentroidData::fScanRetentionTime
double fScanRetentionTime
Definition: CentroidData.h:108
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
RawData.h
OpenMS::CentroidData::fWindowWidth
int fWindowWidth
Definition: CentroidData.h:106
OpenMS::operator<<
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
OpenMS::CentroidData::fNoise
double fNoise
Definition: CentroidData.h:107
OpenMS::CentroidData
Definition: CentroidData.h:63
OpenMS::CentroidData::centroidDataModus_
bool centroidDataModus_
Definition: CentroidData.h:100
OpenMS::CentroidData::fCentroidPeaks
std::list< CentroidPeak > fCentroidPeaks
Definition: CentroidData.h:109