90 static char const *
const dimension_name_short_[DIMENSION];
93 static char const *
const dimension_name_full_[DIMENSION];
96 static char const *
const dimension_unit_short_[DIMENSION];
99 static char const *
const dimension_unit_full_[DIMENSION];
150 intensity_ = intensity;
168 position_ = position;
174 return position_[
MZ];
180 position_[
MZ] = coordinate;
186 return position_[
RT];
192 position_[
RT] = coordinate;
200 #pragma clang diagnostic push
201 #pragma clang diagnostic ignored "-Wfloat-equal"
203 #pragma clang diagnostic pop
253 return left.
getRT() < right;
258 return left < right.
getRT();
278 return left.
getMZ() < right;
283 return left < right.
getMZ();
A 2-dimensional raw data point or peak.
Definition: Peak2D.h:29
CoordinateType getMZ() const
Returns the m/z coordinate (index 1)
Definition: Peak2D.h:172
PositionType const & getPosition() const
Non-mutable access to the position.
Definition: Peak2D.h:154
void setMZ(CoordinateType coordinate)
Mutable access to the m/z coordinate (index 1)
Definition: Peak2D.h:178
Peak2D(Peak2D &&) noexcept=default
Move constructor.
Peak2D(const PositionType &pos, const IntensityType in)
Member constructor.
Definition: Peak2D.h:111
float IntensityType
Intensity type.
Definition: Peak2D.h:36
double CoordinateType
Coordinate type (of the position)
Definition: Peak2D.h:38
void setRT(CoordinateType coordinate)
Mutable access to the RT coordinate (index 0)
Definition: Peak2D.h:190
bool operator==(const Peak2D &rhs) const
Equality operator.
Definition: Peak2D.h:198
static char const * fullDimensionName(UInt const dim)
Full name of the dimension (self-explanatory form)
PositionType position_
The data point position.
Definition: Peak2D.h:324
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:142
static char const * shortDimensionUnit(UInt const dim)
Unit of measurement (abbreviated form)
void setIntensity(IntensityType intensity)
Sets data point intensity (height)
Definition: Peak2D.h:148
void setPosition(const PositionType &position)
Mutable access to the position.
Definition: Peak2D.h:166
DimensionDescription
This enum maps the symbolic names of the dimensions to numbers.
Definition: Peak2D.h:48
friend std::ostream & operator<<(std::ostream &os, const Peak2D &point)
Print the contents to a stream.
DPosition< 2 > PositionType
Position type.
Definition: Peak2D.h:40
bool operator!=(const Peak2D &rhs) const
Equality operator.
Definition: Peak2D.h:207
static char const * shortDimensionName(UInt const dim)
Short name of the dimension (abbreviated form)
IntensityType intensity_
The data point intensity.
Definition: Peak2D.h:326
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:160
CoordinateType getRT() const
Returns the RT coordinate (index 0)
Definition: Peak2D.h:184
Peak2D(const Peak2D &p)=default
Copy constructor.
unsigned int UInt
Unsigned integer type.
Definition: Types.h:64
bool operator==(const IDBoostGraph::ProteinGroup &lhs, const IDBoostGraph::ProteinGroup &rhs)
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:221
bool operator()(const Peak2D &left, IntensityType right) const
Definition: Peak2D.h:226
bool operator()(IntensityType left, const Peak2D &right) const
Definition: Peak2D.h:231
bool operator()(IntensityType left, IntensityType right) const
Definition: Peak2D.h:236
Comparator by m/z position.
Definition: Peak2D.h:270
bool operator()(CoordinateType left, CoordinateType right) const
Definition: Peak2D.h:286
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:271
bool operator()(CoordinateType left, const Peak2D &right) const
Definition: Peak2D.h:281
bool operator()(const Peak2D &left, CoordinateType right) const
Definition: Peak2D.h:276
Comparator by position. Lexicographical comparison (first RT then m/z) is done.
Definition: Peak2D.h:295
bool operator()(const PositionType &left, const PositionType &right) const
Definition: Peak2D.h:311
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:296
bool operator()(const Peak2D &left, const PositionType &right) const
Definition: Peak2D.h:301
bool operator()(const PositionType &left, const Peak2D &right) const
Definition: Peak2D.h:306
Comparator by RT position.
Definition: Peak2D.h:245
bool operator()(CoordinateType left, CoordinateType right) const
Definition: Peak2D.h:261
bool operator()(const Peak2D &left, const Peak2D &right) const
Definition: Peak2D.h:246
bool operator()(CoordinateType left, const Peak2D &right) const
Definition: Peak2D.h:256
bool operator()(const Peak2D &left, CoordinateType right) const
Definition: Peak2D.h:251