Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
Feature.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: Timo Sachsenberg $
32 // $Authors: $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
39 
40 #include <OpenMS/CONCEPT/Types.h>
41 #include <OpenMS/OpenMSConfig.h>
42 
43 #include <vector>
44 
45 namespace OpenMS
46 {
47 
69  class OPENMS_DLLAPI Feature :
70  public BaseFeature
71  {
72 public:
76  Feature();
78 
80  Feature(const Feature& feature);
81 
83  ~Feature() override;
85 
87 
88  QualityType getOverallQuality() const;
90 
92  void setOverallQuality(QualityType q);
93 
95  QualityType getQuality(Size index) const;
97  void setQuality(Size index, QualityType q);
98 
101 
103 
105 
106  const std::vector<ConvexHull2D>& getConvexHulls() const;
109  std::vector<ConvexHull2D>& getConvexHulls();
111  void setConvexHulls(const std::vector<ConvexHull2D>& hulls);
112 
118  ConvexHull2D& getConvexHull() const;
119 
121  bool encloses(double rt, double mz) const;
123 
125  Feature& operator=(const Feature& rhs);
126 
128  bool operator==(const Feature& rhs) const;
129 
131  const std::vector<Feature>& getSubordinates() const;
132 
134  std::vector<Feature>& getSubordinates();
135 
137  void setSubordinates(const std::vector<Feature>& rhs);
138 
151  template <typename Type>
152  Size applyMemberFunction(Size (Type::* member_function)())
153  {
154  Size assignments = 0;
155  assignments += ((*this).*member_function)();
156  for (std::vector<Feature>::iterator iter = subordinates_.begin(); iter != subordinates_.end(); ++iter)
157  {
158  assignments += iter->applyMemberFunction(member_function);
159  }
160  return assignments;
161  }
162 
164  template <typename Type>
165  Size applyMemberFunction(Size (Type::* member_function)() const) const
166  {
167  Size assignments = 0;
168  assignments += ((*this).*member_function)();
169  for (std::vector<Feature>::const_iterator iter = subordinates_.begin(); iter != subordinates_.end(); ++iter)
170  {
171  assignments += iter->applyMemberFunction(member_function);
172  }
173  return assignments;
174  }
175 
176 protected:
177 
179  QualityType qualities_[2];
180 
182  std::vector<ConvexHull2D> convex_hulls_;
183 
186 
189 
191  std::vector<Feature> subordinates_;
192 
193  };
194 
195 } // namespace OpenMS
196 
Size applyMemberFunction(Size(Type::*member_function)() const) const
The "const" variant.
Definition: Feature.h:165
Size applyMemberFunction(Size(Type::*member_function)())
Applies a member function of Type to the feature (including subordinates). The returned values are ac...
Definition: Feature.h:152
Compare by quality.
Definition: BaseFeature.h:108
bool operator==(_Iterator< _Val, _Ref, _Ptr > const &, _Iterator< _Val, _Ref, _Ptr > const &)
Definition: KDTree.h:806
QualityLess OverallQualityLess
Compare by quality.
Definition: Feature.h:100
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
A 2-dimensional hull representation in [counter]clockwise direction - depending on axis labelling...
Definition: ConvexHull2D.h:72
A basic LC-MS feature.
Definition: BaseFeature.h:55
ConvexHull2D convex_hull_
Overall convex hull of the feature.
Definition: Feature.h:188
std::vector< ConvexHull2D > convex_hulls_
Array of convex hulls (one for each mass trace)
Definition: Feature.h:182
std::vector< Feature > subordinates_
subordinate features (e.g. features that represent alternative explanations, usually with lower quali...
Definition: Feature.h:191
An LC-MS feature.
Definition: Feature.h:69
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
bool convex_hulls_modified_
Flag that indicates if the overall convex hull needs to be recomputed (i.e. mass trace convex hulls w...
Definition: Feature.h:185

OpenMS / TOPP release 2.3.0 Documentation generated on Wed Apr 18 2018 19:29:04 using doxygen 1.8.14