13 #include <OpenMS/config.h>
32 struct RangeIntensity;
43 RangeBase(
const double single): min_(single), max_(single)
49 RangeBase(
const double min,
const double max): min_(min), max_(max)
51 if (min_ > max_)
throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"Invalid initialization of range");
96 return uint8_t(min_ <= value) & uint8_t(value <= max_);
116 if (max_ < min) max_ = min;
123 if (min_ > max) min_ = max;
142 min_ = std::min(min_, other.
min_);
143 max_ = std::max(max_, other.
max_);
149 min_ = std::min(min_, value);
150 max_ = std::max(max_, value);
158 if (isEmpty())
return;
170 if (min_ == max_) extendLeftRight(min_span / 2);
181 if (isEmpty())
return;
184 min_ = std::max(min_, other.
min_);
185 max_ = std::min(max_, other.
max_);
195 if (isEmpty())
return;
200 if (getSpan() > sandbox.
getSpan())
202 max_ = min_ + sandbox.
getSpan();
204 if (min_ < sandbox.
min_)
206 shift(sandbox.
min_ - min_);
208 else if (max_ > sandbox.
max_)
210 shift(sandbox.
max_ - max_);
227 if (isEmpty())
return;
228 const double dist = max_ - min_;
229 const double extension = dist * (factor - 1) / 2;
238 if (isEmpty())
return;
247 if (isEmpty())
return nan(
"");
248 return min_ + (max_ - min_) / 2.0;
255 if (isEmpty())
return nan(
"");
261 return min_ == rhs.
min_ && max_ == rhs.
max_;
271 if (isEmpty())
return {std::numeric_limits<double>::lowest(), std::numeric_limits<double>::max()};
278 double min_ = std::numeric_limits<double>::max();
279 double max_ = std::numeric_limits<double>::lowest();
544 template<
typename... RangeBases>
557 using T_BASE = std::decay_t<decltype(*base)>;
558 equal &= ((T_BASE&)rhs == (T_BASE&)*
this);
572 template<
typename... RangeBasesOther>
577 using T_BASE = std::decay_t<decltype(*base)>;
580 base->operator=((T_BASE&)rhs);
592 template<
typename... RangeBasesOther>
597 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
606 template<
typename... RangeBasesOther>
611 using T_BASE = std::decay_t<decltype(*base)>;
614 base->extend((T_BASE&)rhs);
625 template<
typename... RangeBasesOther>
630 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
650 for_each_base_([&](
auto* base) { base->minSpanIfSingular(min_span); });
659 template<
typename... RangeBasesOther>
664 using T_BASE = std::decay_t<decltype(*base)>;
667 const auto& rhs_base = (T_BASE&)rhs;
668 if (! rhs_base.isEmpty()) base->
pushInto(rhs_base);
680 template<
typename... RangeBasesOther>
685 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
694 template<
typename... RangeBasesOther>
699 using T_BASE = std::decay_t<decltype(*base)>;
702 const auto& rhs_base = (T_BASE&)rhs;
703 if (! rhs_base.isEmpty()) base->
clampTo(rhs_base);
715 template<
typename... RangeBasesOther>
720 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
730 using Base = std::decay_t<decltype(*base)>;
731 if (base->DIM == dim) r_base = (Base*)
this;
734 assert((r_base !=
nullptr) &&
"No base class has this MSDim!");
744 using Base = std::decay_t<decltype(*base)>;
745 if (base->DIM == dim) r_base = (Base*)
this;
748 assert((r_base !=
nullptr) &&
"No base class has this MSDim!");
755 constexpr
size_t total {
sizeof...(RangeBases)};
773 template<
typename... RangeBasesOther>
776 bool contained =
true;
777 bool has_overlap =
false;
779 using T_BASE = std::decay_t<decltype(*base)>;
783 if (((T_BASE&)rhs).isEmpty())
return;
784 if (base->contains((T_BASE&)rhs))
return;
806 if constexpr (std::is_base_of_v<RangeRT, ThisRangeType>) this->
RangeRT::clear();
809 if constexpr (std::is_base_of_v<RangeMZ, ThisRangeType>) this->
RangeMZ::clear();
823 assert(
false &&
"This should never be reached. Did you forget to implement a new DIM_UNIT?");
836 template<
typename Visitor>
839 (void(visitor(
static_cast<RangeBases*
>(
this))), ...);
842 template<
typename Visitor>
845 (void(visitor(
static_cast<const RangeBases*
>(
this))), ...);
849 template<
typename Visitor>
852 (void(visitor(
static_cast<const RangeBases*
>(
nullptr))), ...);
856 template<
typename... Range>
865 template<
typename... RangeBases>
Invalid range exception.
Definition: Exception.h:257
Definition: RangeManager.h:867
const ThisRangeType & getRange() const
get range of current data (call updateRanges() before to ensure the range is accurate)
Definition: RangeManager.h:879
typename RangeManager< RangeBases... >::ThisRangeType ThisRangeType
Definition: RangeManager.h:869
virtual void updateRanges()=0
ThisRangeType & getRange()
get mutable range, provided for efficiency reasons (avoid updateRanges(), if only minor changes were ...
Definition: RangeManager.h:885
virtual ~RangeManagerContainer()=default
D'tor.
Handles the management of a multidimensional range, e.g. RangeMZ and RangeIntensity for spectra.
Definition: RangeManager.h:546
void pushInto(const RangeManager< RangeBasesOther... > &sandbox)
Definition: RangeManager.h:681
bool assignUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:573
const RangeBase & getRangeForDim(MSDim dim) const
obtain a range dimension at runtime using dim
Definition: RangeManager.h:725
bool pushIntoUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:660
bool clampToUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:695
HasRangeType hasRange() const
is any/some/all dimension in this range populated?
Definition: RangeManager.h:753
RangeBase & getRangeForDim(MSDim dim)
obtain a range dimension at runtime using dim
Definition: RangeManager.h:739
bool operator==(const RangeManager &rhs) const
Definition: RangeManager.h:553
void for_each_base_(Visitor &&visitor)
use fold expression to iterate over all RangeBases of RangeManager and apply a lambda (Visitor) for e...
Definition: RangeManager.h:837
void for_each_base_(Visitor &&visitor) const
.. and a const version
Definition: RangeManager.h:843
ThisRangeType & clear(const DIM_UNIT range)
Definition: RangeManager.h:801
void clampTo(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:716
void scaleBy(const double factor)
calls RangeBase::scale() for each dimension
Definition: RangeManager.h:635
void minSpanIfSingular(const double min_span)
If any dimension is a single point, e.g. min==max, then extend this dimension by min_span / 2 on eith...
Definition: RangeManager.h:648
auto & assign(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:593
bool extendUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:607
void clearRanges()
Resets all ranges.
Definition: RangeManager.h:794
void printRange(std::ostream &out) const
print each dimension (base classes) to a stream
Definition: RangeManager.h:829
void extend(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:626
bool operator!=(const RangeManager &rhs) const
Definition: RangeManager.h:563
bool containsAll(const RangeManager< RangeBasesOther... > &rhs) const
Definition: RangeManager.h:774
static void static_for_each_base_(Visitor &&visitor)
use fold expression to iterate over all RangeBases of RangeManager and apply a lambda (Visitor) for e...
Definition: RangeManager.h:850
bool contains(T value, T min, T max)
Is a value contained in [min, max] ?
Definition: MathFunctions.h:63
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
DIM
Definition: DimMapper.h:601
MSDim
Dimensions of data acquisition for MS data.
Definition: RangeManager.h:23
DIM_UNIT
Definition: CommonEnums.h:20
@ IM_VSSC
volt-second per square centimeter (i.e. 1/K_0)
@ FAIMS_CV
FAIMS compensation voltage.
@ IM_MS
ion mobility milliseconds
HasRangeType
Enum listing state of dimensions (RangeBases)
Definition: RangeManager.h:523
@ ALL
all dimensions are filled
@ SOME
some dimensions are empty, some are filled
@ NONE
all dimensions are empty (=cleared)
Base class for a simple range with minimum and maximum.
Definition: RangeManager.h:37
double max_
Definition: RangeManager.h:279
double getSpan() const
Definition: RangeManager.h:253
RangeBase(const double single)
Cutom C'tor which sets the range to a singular point.
Definition: RangeManager.h:43
RangeBase(const RangeBase &rhs)=default
Copy C'tor.
void setMin(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:113
RangeBase & operator=(RangeBase &&rhs) noexcept=default
Move assignment (seems useless, but is required for completeness in derived classes' move c'tor)
std::pair< double, double > getNonEmptyRange() const
Return the current range, or (if empty) a full range (-1e308, 1e308).
Definition: RangeManager.h:268
void scaleBy(const double factor)
Scale the range of the dimension by a factor. A factor > 1 increases the range; factor < 1 decreases ...
Definition: RangeManager.h:225
RangeBase & operator=(const RangeBase &rhs)=default
Assignment operator.
void minSpanIfSingular(const double min_span)
If the current range is a single point, e.g. min==max, then extend the range by min_span / 2 on eithe...
Definition: RangeManager.h:168
void pushInto(const RangeBase &sandbox)
Definition: RangeManager.h:193
void shift(const double distance)
Definition: RangeManager.h:236
~RangeBase() noexcept=default
D'tor.
bool contains(const double value) const
is value within [min, max]?
Definition: RangeManager.h:94
double center() const
Definition: RangeManager.h:245
RangeBase()=default
C'tor: initialize with empty range.
void extend(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:147
void extendLeftRight(const double by)
Definition: RangeManager.h:156
RangeBase(RangeBase &&rhs) noexcept=default
Move C'tor (seems useless, but is required for completeness in derived classes' move c'tor)
bool contains(const RangeBase &inner_range) const
is the range inner_range within [min, max]?
Definition: RangeManager.h:100
void clampTo(const RangeBase &other)
Definition: RangeManager.h:179
double getMin() const
only useful if isEmpty() returns false
Definition: RangeManager.h:127
void clear()
make the range empty, i.e. isEmpty() will be true
Definition: RangeManager.h:82
void setMax(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:120
bool isEmpty() const
is the range empty (i.e. min > max)?
Definition: RangeManager.h:88
double min_
Definition: RangeManager.h:278
RangeBase(const double min, const double max)
Definition: RangeManager.h:49
bool operator==(const RangeBase &rhs) const
Definition: RangeManager.h:259
double getMax() const
only useful if isEmpty() returns false
Definition: RangeManager.h:133
void extend(const RangeBase &other)
ensure the range includes the range of other
Definition: RangeManager.h:140
Definition: RangeManager.h:404
void setMinIntensity(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:418
double getMinIntensity() const
only useful if isEmpty() returns false
Definition: RangeManager.h:430
void extendIntensity(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:443
bool containsIntensity(const double value) const
is value within [min, max]?
Definition: RangeManager.h:449
double getMaxIntensity() const
only useful if isEmpty() returns false
Definition: RangeManager.h:436
bool containsIntensity(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:455
void setMaxIntensity(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:424
Definition: RangeManager.h:345
bool containsMZ(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:396
void setMaxMZ(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:365
void extendMZ(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:384
void setMinMZ(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:359
double getMaxMZ() const
only useful if isEmpty() returns false
Definition: RangeManager.h:377
double getMinMZ() const
only useful if isEmpty() returns false
Definition: RangeManager.h:371
bool containsMZ(const double value) const
is value within [min, max]?
Definition: RangeManager.h:390
Definition: RangeManager.h:463
bool containsMobility(const double value) const
is value within [min, max]?
Definition: RangeManager.h:507
void extendMobility(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:501
double getMinMobility() const
only useful if isEmpty() returns false
Definition: RangeManager.h:488
bool containsMobility(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:513
double getMaxMobility() const
only useful if isEmpty() returns false
Definition: RangeManager.h:494
void setMinMobility(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:476
void setMaxMobility(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:482
Definition: RangeManager.h:285
bool containsRT(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:336
void extendRT(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:324
double getMaxRT() const
only useful if isEmpty() returns false
Definition: RangeManager.h:317
void setMaxRT(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:305
void setMinRT(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:299
double getMinRT() const
only useful if isEmpty() returns false
Definition: RangeManager.h:311
bool containsRT(const double value) const
is value within [min, max]?
Definition: RangeManager.h:330