128 return data_.front();
132 return data_.front();
146 return data_.begin();
150 return data_.begin();
154 return data_.cbegin();
172 return data_.rbegin();
176 return data_.crbegin();
184 return data_.crend();
189 return data_.empty();
193 return data_.erase(where);
202 return data_.emplace_back(mb);
204 template<
class...
Args>
207 data_.emplace_back(args...);
217 return data_.insert(where, first, last);
222 return data_.resize(new_size);
226 return data_.reserve(new_size);
236 data_.swap(mb.data_);
237 std::swap(retention_time_, mb.retention_time_);
238 std::swap(drift_time_unit_, mb.drift_time_unit_);
248 return retention_time_;
254 retention_time_ = rt;
262 return drift_time_unit_;
297 float_data_arrays_ = fda;
309 string_data_arrays_ = sda;
321 integer_data_arrays_ = ida;
349 template<
class Predicate>
352 auto value_2_index_wrapper = [
this, &lambda](
const PeakType& value1,
const PeakType& value2) {
354 const Size index1 = (&value1) - (&this->front());
355 const Size index2 = (&value2) - (&this->front());
357 assert(index1 < this->size());
358 assert(index2 < this->size());
359 return lambda(index1, index2);
361 return std::is_sorted(this->begin(), this->end(), value_2_index_wrapper);
576 double retention_time_ = -1;
Float data array class.
Definition DataArrays.h:25
Integer data array class.
Definition DataArrays.h:75
String data array class.
Definition DataArrays.h:125
A 1-dimensional raw data mobility point or peak. The unit (ms, 1/K_0, etc) is implicit.
Definition MobilityPeak1D.h:28
double CoordinateType
Coordinate type.
Definition MobilityPeak1D.h:39
The representation of a 1D ion mobilogram.
Definition Mobilogram.h:32
ConstIterator const_iterator
Definition Mobilogram.h:69
void setIntegerDataArrays(const IntegerDataArrays &ida)
Sets the integer meta data arrays.
Definition Mobilogram.h:319
Int findNearest(CoordinateType mb, CoordinateType tolerance_left, CoordinateType tolerance_right) const
Search for the peak nearest to a specific mobility given two +/- tolerance windows.
void clear() noexcept
Clears all data and ranges.
Iterator iterator
Definition Mobilogram.h:66
const MobilityPeak1D & front() const noexcept
Definition Mobilogram.h:130
void pop_back()
Definition Mobilogram.h:210
Iterator MBEnd(Iterator begin, CoordinateType mb, Iterator end)
Binary search for peak range end (returns the past-the-end iterator)
void swap(Mobilogram &mb) noexcept
Definition Mobilogram.h:234
ConstIterator PosEnd(ConstIterator begin, CoordinateType mb, ConstIterator end) const
Binary search for peak range end (returns the past-the-end iterator)
const IntegerDataArrays & getIntegerDataArrays() const
Returns a const reference to the integer meta data arrays.
MobilityPeak1D & emplace_back(MobilityPeak1D mb)
Definition Mobilogram.h:200
void setDriftTimeUnit(DriftTimeUnit dt) noexcept
Sets the ion mobility drift time unit.
MobilityPeak1D & operator[](Size i) noexcept
Definition Mobilogram.h:116
Iterator PosBegin(CoordinateType mb)
Binary search for peak range begin.
ConstIterator MBBegin(CoordinateType mb) const
Binary search for peak range begin.
Iterator PosEnd(Iterator begin, CoordinateType mb, Iterator end)
Binary search for peak range end (returns the past-the-end iterator)
ReverseIterator rbegin() noexcept
Definition Mobilogram.h:170
ConstReverseIterator crbegin() const
Definition Mobilogram.h:174
std::vector< StringDataArray > StringDataArrays
Definition Mobilogram.h:56
OpenMS::DataArrays::FloatDataArray FloatDataArray
Float data array vector type.
Definition Mobilogram.h:52
MobilityPeak1D & back() noexcept
Definition Mobilogram.h:135
ConstIterator MBBegin(ConstIterator begin, CoordinateType mb, ConstIterator end) const
Binary search for peak range begin.
size_t size() const noexcept
Definition Mobilogram.h:229
bool empty() const noexcept
Definition Mobilogram.h:187
ContainerType::const_reverse_iterator ConstReverseIterator
Non-mutable reverse iterator.
Definition Mobilogram.h:74
Mobilogram()=default
Constructor.
ConstIterator begin() const noexcept
Definition Mobilogram.h:148
ConstIterator cbegin() const noexcept
Definition Mobilogram.h:152
String getDriftTimeUnitAsString() const
returns the ion mobility drift time unit as string
ReverseIterator rend() noexcept
Definition Mobilogram.h:178
Iterator begin() noexcept
Definition Mobilogram.h:144
PeakType::CoordinateType CoordinateType
Coordinate (mobility) type.
Definition Mobilogram.h:45
const StringDataArrays & getStringDataArrays() const
Returns a const reference to the string meta data arrays.
const MobilityPeak1D & back() const noexcept
Definition Mobilogram.h:139
void resize(size_t new_size)
Definition Mobilogram.h:220
const MobilityPeak1D & operator[](Size i) const noexcept
Definition Mobilogram.h:120
bool isSorted() const
Checks if all peaks are sorted with respect to ascending mobility.
ConstIterator MBEnd(CoordinateType mb) const
Binary search for peak range end (returns the past-the-end iterator)
Iterator insert(ConstIterator where, ConstIterator first, ConstIterator last)
Definition Mobilogram.h:215
ConstIterator PosEnd(CoordinateType mb) const
Binary search for peak range end (returns the past-the-end iterator)
Mobilogram(Mobilogram &&) noexcept=default
Move constructor.
void reserve(size_t new_size)
Definition Mobilogram.h:224
ConstIterator PosBegin(CoordinateType mb) const
Binary search for peak range begin.
Iterator MBEnd(CoordinateType mb)
Binary search for peak range end (returns the past-the-end iterator)
void sortByPosition()
Lexicographically sorts the peaks by their position (mobility).
void setRT(double rt) noexcept
Sets the retention time (in seconds)
Definition Mobilogram.h:252
ContainerType::reverse_iterator ReverseIterator
Mutable reverse iterator.
Definition Mobilogram.h:71
void sortByIntensity(bool reverse=false)
Lexicographically sorts the peaks by their intensity.
Size findNearest(CoordinateType mb) const
Binary search for the peak nearest to a specific mobility.
FloatDataArrays & getFloatDataArrays()
Returns a mutable reference to the float meta data arrays.
ConstIterator cend() const noexcept
Definition Mobilogram.h:165
OpenMS::DataArrays::StringDataArray StringDataArray
String data array vector type.
Definition Mobilogram.h:55
ContainerType::const_iterator ConstIterator
Non-mutable iterator.
Definition Mobilogram.h:68
ConstIterator erase(ConstIterator where) noexcept
Definition Mobilogram.h:191
ConstReverseIterator const_reverse_iterator
Definition Mobilogram.h:75
ConstIterator PosBegin(ConstIterator begin, CoordinateType mb, ConstIterator end) const
Binary search for peak range begin.
ReverseIterator reverse_iterator
Definition Mobilogram.h:72
std::vector< PeakType > ContainerType
Mobilogram base type.
Definition Mobilogram.h:47
double getRT() const noexcept
Returns the retention time (in seconds)
Definition Mobilogram.h:246
ConstIterator end() const noexcept
Definition Mobilogram.h:161
bool isSorted(const Predicate &lambda) const
Definition Mobilogram.h:350
IntegerDataArrays & getIntegerDataArrays()
Returns a mutable reference to the integer meta data arrays.
void emplace_back(Args &&... args)
Definition Mobilogram.h:205
ConstIterator MBEnd(ConstIterator begin, CoordinateType mb, ConstIterator end) const
Binary search for peak range end (returns the past-the-end iterator)
Iterator PosEnd(CoordinateType mb)
Binary search for peak range end (returns the past-the-end iterator)
ConstReverseIterator crend() const
Definition Mobilogram.h:182
void setStringDataArrays(const StringDataArrays &sda)
Sets the string meta data arrays.
Definition Mobilogram.h:307
Iterator MBBegin(Iterator begin, CoordinateType mb, Iterator end)
Binary search for peak range begin.
Int findHighestInWindow(CoordinateType mb, CoordinateType tolerance_left, CoordinateType tolerance_right) const
Search for the peak with highest intensity among the peaks near to a specific mobility given two +/- ...
const FloatDataArrays & getFloatDataArrays() const
MobilityPeak1D & front() noexcept
Definition Mobilogram.h:126
void push_back(MobilityPeak1D mb)
Definition Mobilogram.h:196
Int findNearest(CoordinateType mb, CoordinateType tolerance) const
Binary search for the peak nearest to a specific mobility given a +/- tolerance windows.
DriftTimeUnit getDriftTimeUnit() const noexcept
Returns the ion mobility drift time unit.
Definition Mobilogram.h:260
std::vector< FloatDataArray > FloatDataArrays
Definition Mobilogram.h:53
Mobilogram(const Mobilogram &source)=default
Copy constructor.
Iterator MBBegin(CoordinateType mb)
Binary search for peak range begin.
Iterator end() noexcept
Definition Mobilogram.h:157
Iterator PosBegin(Iterator begin, CoordinateType mb, Iterator end)
Binary search for peak range begin.
void updateRanges() override
OpenMS::DataArrays::IntegerDataArray IntegerDataArray
Integer data array vector type.
Definition Mobilogram.h:58
std::vector< IntegerDataArray > IntegerDataArrays
Definition Mobilogram.h:59
void setFloatDataArrays(const FloatDataArrays &fda)
Sets the float meta data arrays.
Definition Mobilogram.h:295
StringDataArrays & getStringDataArrays()
Returns a mutable reference to the string meta data arrays.
Definition RangeManager.h:889
Handles the management of a multidimensional range, e.g. RangeMZ and RangeIntensity for spectra.
Definition RangeManager.h:568
A more convenient string class.
Definition String.h:34
int Int
Signed integer type.
Definition Types.h:72
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition Types.h:97
bool operator==(const IDBoostGraph::ProteinGroup &lhs, const IDBoostGraph::ProteinGroup &rhs)
custom arguments to allow for looping calls
Definition WizardHelper.h:47
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
DriftTimeUnit
Drift time unit for ion mobility.
Definition IMTypes.h:23
Comparator for the RT of the mobilogram.
Definition Mobilogram.h:35
bool operator()(const Mobilogram &a, const Mobilogram &b) const