RangeMZ#

class pyopenms.RangeMZ#

Bases: object

Cython implementation of _RangeMZ

Original C++ documentation is available here

– Inherits from [‘RangeBase’]

__init__()#

Overload:

__init__(self) None

Overload:

__init__(self, in_0: RangeMZ) None

Methods

__init__

Overload:

contains(self, value)

Is value within [min, max]?

containsMZ(self, value)

Is value within [min, max]?

extend(self, value)

Extend the range such that it includes the given @p value

extendMZ(self, value)

Extend the range such that it includes the given @p value

getMax(self)

getMaxMZ(self)

getMin(self)

getMinMZ(self)

setMax(self, max)

setMaxMZ(self, max)

setMin(self, min)

setMinMZ(self, min)

contains(self, value: float) bool#

Is value within [min, max]?

containsMZ(self, value: float) bool#

Is value within [min, max]?

extend(self, value: float) None#

Extend the range such that it includes the given @p value

extendMZ(self, value: float) None#

Extend the range such that it includes the given @p value

getMax(self) float#
getMaxMZ(self) float#
getMin(self) float#
getMinMZ(self) float#
setMax(self, max: float) None#
setMaxMZ(self, max: float) None#
setMin(self, min: float) None#
setMinMZ(self, min: float) None#