35 #ifndef OPENMS_KERNEL_CHROMATOGRAMPEAK_H 
   36 #define OPENMS_KERNEL_CHROMATOGRAMPEAK_H 
   84       position_(p.position_),
 
   85       intensity_(p.intensity_)
 
  161       position_ = position;
 
  169       if (
this == &rhs) 
return *
this;
 
  186       return !(operator==(rhs));
 
  198       std::binary_function<ChromatogramPeak, ChromatogramPeak, bool>
 
  224       public std::binary_function<ChromatogramPeak, ChromatogramPeak, bool>
 
  233         return left.
getRT() < right;
 
  238         return left < right.
getRT();
 
  250       public std::binary_function<ChromatogramPeak, ChromatogramPeak, bool>
 
  285 #endif // OPENMS_KERNEL_CHROMATOGRAMPEAK_H 
void setRT(CoordinateType rt)
Mutable access to RT. 
Definition: ChromatogramPeak.h:117
bool operator()(ChromatogramPeak const &left, ChromatogramPeak const &right) const 
Definition: ChromatogramPeak.h:200
ChromatogramPeak(const ChromatogramPeak &p)
Copy constructor. 
Definition: ChromatogramPeak.h:83
void setPos(CoordinateType pos)
Alias for setRT() 
Definition: ChromatogramPeak.h:129
CoordinateType getMZ() const 
Alias for getRT() 
Definition: ChromatogramPeak.h:135
bool operator!=(const ChromatogramPeak &rhs) const 
Equality operator. 
Definition: ChromatogramPeak.h:184
bool operator()(IntensityType left, IntensityType right) const 
Definition: ChromatogramPeak.h:215
PositionType position_
The data point position. 
Definition: ChromatogramPeak.h:275
bool operator()(const PositionType &left, const PositionType &right) const 
Definition: ChromatogramPeak.h:267
std::ostream & operator<<(std::ostream &os, const ItraqQuantifier::ItraqQuantifierStats &stats)
bool operator()(ChromatogramPeak const &left, CoordinateType right) const 
Definition: ChromatogramPeak.h:231
bool operator()(const ChromatogramPeak &left, const ChromatogramPeak &right) const 
Definition: ChromatogramPeak.h:226
~ChromatogramPeak()
Destructor. 
Definition: ChromatogramPeak.h:96
PositionType const & getPosition() const 
Non-mutable access to the position. 
Definition: ChromatogramPeak.h:147
bool operator()(CoordinateType left, ChromatogramPeak const &right) const 
Definition: ChromatogramPeak.h:236
ChromatogramPeak & operator=(const ChromatogramPeak &rhs)
Assignment operator. 
Definition: ChromatogramPeak.h:167
Comparator by position. As this class has dimension 1, this is basically an alias for RTLess...
Definition: ChromatogramPeak.h:249
DPosition< 1 > PositionType
Position type. 
Definition: ChromatogramPeak.h:67
CoordinateType getRT() const 
Non-mutable access to RT. 
Definition: ChromatogramPeak.h:111
bool operator()(CoordinateType left, CoordinateType right) const 
Definition: ChromatogramPeak.h:241
PositionType & getPosition()
Mutable access to the position. 
Definition: ChromatogramPeak.h:153
bool operator()(IntensityType left, ChromatogramPeak const &right) const 
Definition: ChromatogramPeak.h:210
DoubleReal IntensityType
Intensity type. 
Definition: ChromatogramPeak.h:65
Comparator that allows to compare the indices of two peaks by their intensity. 
Definition: FeaFiModule.h:56
bool operator()(const ChromatogramPeak &left, const PositionType &right) const 
Definition: ChromatogramPeak.h:257
bool operator()(const PositionType &left, const ChromatogramPeak &right) const 
Definition: ChromatogramPeak.h:262
void setIntensity(IntensityType intensity)
Mutable access to the data point intensity (height) 
Definition: ChromatogramPeak.h:108
bool operator()(ChromatogramPeak const &left, IntensityType right) const 
Definition: ChromatogramPeak.h:205
IntensityType getIntensity() const 
Non-mutable access to the data point intensity (height) 
Definition: ChromatogramPeak.h:106
A 1-dimensional raw data point or peak for chromatograms. 
Definition: ChromatogramPeak.h:55
IntensityType intensity_
The data point intensity. 
Definition: ChromatogramPeak.h:277
void setMZ(CoordinateType rt)
Alias for setRT() 
Definition: ChromatogramPeak.h:141
bool operator==(const ChromatogramPeak &rhs) const 
Equality operator. 
Definition: ChromatogramPeak.h:178
DoubleReal CoordinateType
Coordinate type. 
Definition: ChromatogramPeak.h:69
Comparator by RT position. 
Definition: ChromatogramPeak.h:223
void setPosition(PositionType const &position)
Mutable access to the position. 
Definition: ChromatogramPeak.h:159
CoordinateType getPos() const 
Alias for getRT() 
Definition: ChromatogramPeak.h:123
bool operator()(const ChromatogramPeak &left, const ChromatogramPeak &right) const 
Definition: ChromatogramPeak.h:252