116 static char const *
const dimension_name_short_[DIMENSION];
119 static char const *
const dimension_name_full_[DIMENSION];
122 static char const *
const dimension_unit_short_[DIMENSION];
125 static char const *
const dimension_unit_full_[DIMENSION];
176 intensity_ = intensity;
194 position_ = position;
200 return position_[
MZ];
206 position_[
MZ] = coordinate;
212 return position_[
RT];
218 position_[
RT] = coordinate;
226 #pragma clang diagnostic push
227 #pragma clang diagnostic ignored "-Wfloat-equal"
229 #pragma clang diagnostic pop
279 return left.
getRT() < right;
284 return left < right.
getRT();
304 return left.
getMZ() < right;
309 return left < right.
getMZ();
A 2-dimensional raw data point or peak.
Definition: Peak2D.h:55
CoordinateType getMZ() const
Returns the m/z coordinate (index 1)
Definition: Peak2D.h:198
PositionType const & getPosition() const
Non-mutable access to the position.
Definition: Peak2D.h:180
void setMZ(CoordinateType coordinate)
Mutable access to the m/z coordinate (index 1)
Definition: Peak2D.h:204
Peak2D(Peak2D &&) noexcept=default
Move constructor.
Peak2D(const PositionType &pos, const IntensityType in)
Member constructor.
Definition: Peak2D.h:137
float IntensityType
Intensity type.
Definition: Peak2D.h:62
double CoordinateType
Coordinate type (of the position)
Definition: Peak2D.h:64
void setRT(CoordinateType coordinate)
Mutable access to the RT coordinate (index 0)
Definition: Peak2D.h:216
bool operator==(const Peak2D &rhs) const
Equality operator.
Definition: Peak2D.h:224
static char const * fullDimensionName(UInt const dim)
Full name of the dimension (self-explanatory form)
PositionType position_
The data point position.
Definition: Peak2D.h:350
static char const * shortDimensionUnitRT()
Unit of measurement (abbreviated form)
static char const * fullDimensionUnitRT()
Unit of measurement (self-explanatory form)
static char const * shortDimensionUnitMZ()
Unit of measurement (abbreviated form)
static char const * shortDimensionNameMZ()
Short name of the dimension (abbreviated form)
static char const * fullDimensionNameRT()
Full name of the dimension (self-explanatory form)
IntensityType getIntensity() const
Definition: Peak2D.h:168
static char const * shortDimensionUnit(UInt const dim)
Unit of measurement (abbreviated form)
void setIntensity(IntensityType intensity)
Sets data point intensity (height)
Definition: Peak2D.h:174
void setPosition(const PositionType &position)
Mutable access to the position.
Definition: Peak2D.h:192
DimensionDescription
This enum maps the symbolic names of the dimensions to numbers.
Definition: Peak2D.h:74
friend std::ostream & operator<<(std::ostream &os, const Peak2D &point)
Print the contents to a stream.
DPosition< 2 > PositionType
Position type.
Definition: Peak2D.h:66
bool operator!=(const Peak2D &rhs) const
Equality operator.
Definition: Peak2D.h:233
static char const * shortDimensionName(UInt const dim)
Short name of the dimension (abbreviated form)
IntensityType intensity_
The data point intensity.
Definition: Peak2D.h:352
static char const * fullDimensionUnit(UInt const dim)
Unit of measurement (self-explanatory form)
static char const * fullDimensionNameMZ()
Full name of the dimension (self-explanatory form)
static char const * fullDimensionUnitMZ()
Unit of measurement (self-explanatory form)
static char const * shortDimensionNameRT()
Short name of the dimension (abbreviated form)
PositionType & getPosition()
Mutable access to the position.
Definition: Peak2D.h:186
CoordinateType getRT() const
Returns the RT coordinate (index 0)
Definition: Peak2D.h:210
Peak2D(const Peak2D &p)=default
Copy constructor.
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
bool operator==(const IDBoostGraph::ProteinGroup &lhs, const IDBoostGraph::ProteinGroup &rhs)
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:48
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:247
bool operator()(const Peak2D &left, IntensityType right) const
Definition: Peak2D.h:252
bool operator()(IntensityType left, const Peak2D &right) const
Definition: Peak2D.h:257
bool operator()(IntensityType left, IntensityType right) const
Definition: Peak2D.h:262
Comparator by m/z position.
Definition: Peak2D.h:296
bool operator()(CoordinateType left, CoordinateType right) const
Definition: Peak2D.h:312
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:297
bool operator()(CoordinateType left, const Peak2D &right) const
Definition: Peak2D.h:307
bool operator()(const Peak2D &left, CoordinateType right) const
Definition: Peak2D.h:302
Comparator by position. Lexicographical comparison (first RT then m/z) is done.
Definition: Peak2D.h:321
bool operator()(const PositionType &left, const PositionType &right) const
Definition: Peak2D.h:337
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:322
bool operator()(const Peak2D &left, const PositionType &right) const
Definition: Peak2D.h:327
bool operator()(const PositionType &left, const Peak2D &right) const
Definition: Peak2D.h:332
Comparator by RT position.
Definition: Peak2D.h:271
bool operator()(CoordinateType left, CoordinateType right) const
Definition: Peak2D.h:287
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:272
bool operator()(CoordinateType left, const Peak2D &right) const
Definition: Peak2D.h:282
bool operator()(const Peak2D &left, CoordinateType right) const
Definition: Peak2D.h:277