11 #include <OpenMS/config.h>
33 struct RangeIntensity;
45 min_(single), max_(single)
96 return uint8_t(min_ <= value) & uint8_t(value <= max_);
143 min_ = std::min(min_, other.
min_);
144 max_ = std::max(max_, other.
max_);
150 min_ = std::min(min_, value);
151 max_ = std::max(max_, value);
159 if (isEmpty())
return;
171 if (min_ == max_) extendLeftRight(min_span / 2);
182 if (isEmpty())
return;
185 min_ = std::max(min_, other.
min_);
186 max_ = std::min(max_, other.
max_);
196 if (isEmpty())
return;
201 if (getSpan() > sandbox.
getSpan())
203 max_ = min_ + sandbox.
getSpan();
205 if (min_ < sandbox.
min_)
207 shift(sandbox.
min_ - min_);
209 else if (max_ > sandbox.
max_)
211 shift(sandbox.
max_ - max_);
228 if (isEmpty())
return;
229 const double dist = max_ - min_;
230 const double extension = dist * (factor - 1) / 2;
239 if (isEmpty())
return;
248 if (isEmpty())
return nan(
"");
249 return min_ + (max_ - min_) / 2.0;
256 if (isEmpty())
return nan(
"");
262 return min_ == rhs.
min_ && max_ == rhs.
max_;
272 if (isEmpty())
return {std::numeric_limits<double>::lowest(), std::numeric_limits<double>::max()};
273 else return {min_, max_};
278 double min_ = std::numeric_limits<double>::max();
279 double max_ = std::numeric_limits<double>::lowest();
542 template<
typename... RangeBases>
554 using T_BASE = std::decay_t<decltype(*base)>;
555 equal &= ((T_BASE&) rhs == (T_BASE&) *
this);
569 template <
typename... RangeBasesOther>
574 using T_BASE = std::decay_t<decltype(*base)>;
577 base->operator=((T_BASE&) rhs);
589 template<
typename... RangeBasesOther>
594 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION ,
"No assignment took place (no dimensions in common!);");
603 template<
typename... RangeBasesOther>
608 using T_BASE = std::decay_t<decltype(*base)>;
611 base->extend((T_BASE&) rhs);
622 template<
typename... RangeBasesOther>
627 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
635 base->scaleBy(factor);
650 base->minSpanIfSingular(min_span);
660 template<
typename... RangeBasesOther>
665 using T_BASE = std::decay_t<decltype(*base)>;
668 const auto& rhs_base = (T_BASE&)rhs;
669 if (!rhs_base.isEmpty()) base->
pushInto(rhs_base);
681 template<
typename... RangeBasesOther>
686 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
695 template<
typename... RangeBasesOther>
700 using T_BASE = std::decay_t<decltype(*base)>;
703 const auto& rhs_base = (T_BASE&)rhs;
704 if (!rhs_base.isEmpty()) base->
clampTo(rhs_base);
716 template<
typename... RangeBasesOther>
721 throw Exception::InvalidRange(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"No assignment took place (no dimensions in common!);");
731 using Base = std::decay_t<decltype(*base)>;
732 if (base->DIM == dim)
733 r_base = (Base*)
this;
736 assert((r_base !=
nullptr) &&
"No base class has this MSDim!");
746 using Base = std::decay_t<decltype(*base)>;
747 if (base->DIM == dim)
748 r_base = (Base*)
this;
751 assert((r_base !=
nullptr) &&
"No base class has this MSDim!");
758 constexpr
size_t total{
sizeof...(RangeBases)};
761 count += !base->isEmpty();
778 template<
typename... RangeBasesOther>
781 bool contained =
true;
782 bool has_overlap =
false;
784 using T_BASE = std::decay_t<decltype(*base)>;
788 if (((T_BASE&)rhs).isEmpty())
return;
789 if (base->contains((T_BASE&) rhs))
return;
813 if constexpr (std::is_base_of_v<RangeRT, ThisRangeType>) this->
RangeRT::clear();
816 if constexpr (std::is_base_of_v<RangeMZ, ThisRangeType>) this->
RangeMZ::clear();
829 assert(
false &&
"This should never be reached. Did you forget to implement a new DIM_UNIT?");
844 template<
typename Visitor>
847 (void(visitor(
static_cast<RangeBases*
>(
this))), ...);
850 template<
typename Visitor>
853 (void(visitor(
static_cast<const RangeBases*
>(
this))), ...);
857 template<
typename Visitor>
860 (void(visitor(
static_cast<const RangeBases*
>(
nullptr))), ...);
864 template<
typename... Range>
873 template <
typename ...RangeBases>
Invalid range exception.
Definition: Exception.h:240
Definition: RangeManager.h:876
const ThisRangeType & getRange() const
get range of current data (call updateRanges() before to ensure the range is accurate)
Definition: RangeManager.h:888
typename RangeManager< RangeBases... >::ThisRangeType ThisRangeType
Definition: RangeManager.h:878
virtual void updateRanges()=0
ThisRangeType & getRange()
get mutable range, provided for efficiency reasons (avoid updateRanges(), if only minor changes were ...
Definition: RangeManager.h:894
virtual ~RangeManagerContainer()=default
D'tor.
Handles the management of a multidimensional range, e.g. RangeMZ and RangeIntensity for spectra.
Definition: RangeManager.h:544
void pushInto(const RangeManager< RangeBasesOther... > &sandbox)
Definition: RangeManager.h:682
bool assignUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:570
const RangeBase & getRangeForDim(MSDim dim) const
obtain a range dimension at runtime using dim
Definition: RangeManager.h:726
bool pushIntoUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:661
bool clampToUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:696
HasRangeType hasRange() const
is any/some/all dimension in this range populated?
Definition: RangeManager.h:756
RangeBase & getRangeForDim(MSDim dim)
obtain a range dimension at runtime using dim
Definition: RangeManager.h:741
bool operator==(const RangeManager &rhs) const
Definition: RangeManager.h:550
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:845
void for_each_base_(Visitor &&visitor) const
.. and a const version
Definition: RangeManager.h:851
ThisRangeType & clear(const DIM_UNIT range)
Definition: RangeManager.h:808
void clampTo(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:717
void scaleBy(const double factor)
calls RangeBase::scale() for each dimension
Definition: RangeManager.h:632
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:647
auto & assign(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:590
bool extendUnsafe(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:604
void clearRanges()
Resets all ranges.
Definition: RangeManager.h:799
void printRange(std::ostream &out) const
print each dimension (base classes) to a stream
Definition: RangeManager.h:835
void extend(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:623
bool operator!=(const RangeManager &rhs) const
Definition: RangeManager.h:560
bool containsAll(const RangeManager< RangeBasesOther... > &rhs) const
Definition: RangeManager.h:779
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:858
bool contains(T value, T min, T max)
Is a value contained in [min, max] ?
Definition: MathFunctions.h:62
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:24
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:521
@ 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:38
double max_
Definition: RangeManager.h:279
double getSpan() const
Definition: RangeManager.h:254
RangeBase(const double single)
Cutom C'tor which sets the range to a singular point.
Definition: RangeManager.h:44
RangeBase(const RangeBase &rhs)=default
Copy C'tor.
void setMin(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:112
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:269
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:226
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:169
void pushInto(const RangeBase &sandbox)
Definition: RangeManager.h:194
void shift(const double distance)
Definition: RangeManager.h:237
~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:246
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:148
void extendLeftRight(const double by)
Definition: RangeManager.h:157
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:180
double getMin() const
only useful if isEmpty() returns false
Definition: RangeManager.h:128
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:51
bool operator==(const RangeBase &rhs) const
Definition: RangeManager.h:260
double getMax() const
only useful if isEmpty() returns false
Definition: RangeManager.h:134
void extend(const RangeBase &other)
ensure the range includes the range of other
Definition: RangeManager.h:141
Definition: RangeManager.h:402
void setMinIntensity(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:416
double getMinIntensity() const
only useful if isEmpty() returns false
Definition: RangeManager.h:428
void extendIntensity(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:441
bool containsIntensity(const double value) const
is value within [min, max]?
Definition: RangeManager.h:447
double getMaxIntensity() const
only useful if isEmpty() returns false
Definition: RangeManager.h:434
bool containsIntensity(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:453
void setMaxIntensity(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:422
Definition: RangeManager.h:344
bool containsMZ(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:395
void setMaxMZ(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:364
void extendMZ(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:383
void setMinMZ(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:358
double getMaxMZ() const
only useful if isEmpty() returns false
Definition: RangeManager.h:376
double getMinMZ() const
only useful if isEmpty() returns false
Definition: RangeManager.h:370
bool containsMZ(const double value) const
is value within [min, max]?
Definition: RangeManager.h:389
Definition: RangeManager.h:461
bool containsMobility(const double value) const
is value within [min, max]?
Definition: RangeManager.h:505
void extendMobility(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:499
double getMinMobility() const
only useful if isEmpty() returns false
Definition: RangeManager.h:486
bool containsMobility(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:511
double getMaxMobility() const
only useful if isEmpty() returns false
Definition: RangeManager.h:492
void setMinMobility(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:474
void setMaxMobility(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:480
Definition: RangeManager.h:284
bool containsRT(const RangeBase &inner_range) const
is the range inner_range within [min, max] of this range?
Definition: RangeManager.h:335
void extendRT(const double value)
extend the range such that it includes the given value
Definition: RangeManager.h:323
double getMaxRT() const
only useful if isEmpty() returns false
Definition: RangeManager.h:316
void setMaxRT(const double max)
sets the maximum (and the minimum, if uninitialized)
Definition: RangeManager.h:304
void setMinRT(const double min)
sets the minimum (and the maximum, if uninitialized)
Definition: RangeManager.h:298
double getMinRT() const
only useful if isEmpty() returns false
Definition: RangeManager.h:310
bool containsRT(const double value) const
is value within [min, max]?
Definition: RangeManager.h:329