RangeRT#

class pyopenms.RangeRT#

Bases: object

Cython implementation of _RangeRT

Original C++ documentation is available here

– Inherits from [‘RangeBase’]

__init__()#

Overload:

__init__(self) None

Overload:

__init__(self, in_0: RangeRT) None

Methods

__init__

Overload:

contains(self, value)

Is value within [min, max]?

containsRT(self, value)

Is value within [min, max]?

extend(self, value)

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

extendRT(self, value)

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

getMax(self)

getMaxRT(self)

getMin(self)

getMinRT(self)

setMax(self, max)

setMaxRT(self, max)

setMin(self, min)

setMinRT(self, min)

contains(self, value: float) bool#

Is value within [min, max]?

containsRT(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

extendRT(self, value: float) None#

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

getMax(self) float#
getMaxRT(self) float#
getMin(self) float#
getMinRT(self) float#
setMax(self, max: float) None#
setMaxRT(self, max: float) None#
setMin(self, min: float) None#
setMinRT(self, min: float) None#