OpenMS
|
Abstract base class for 1-dimensional models. More...
#include <OpenMS/FEATUREFINDER/BaseModel.h>
Public Types | |
typedef double | IntensityType |
typedef double | CoordinateType |
typedef DPosition< 1 > | PositionType |
typedef DPeak< 1 >::Type | PeakType |
typedef std::vector< PeakType > | SamplesType |
Public Member Functions | |
BaseModel () | |
Default constructor. More... | |
BaseModel (const BaseModel &source) | |
copy constructor More... | |
~BaseModel () override | |
Destructor. More... | |
BaseModel & | operator= (const BaseModel &source) |
assignment operator More... | |
virtual IntensityType | getIntensity (const PositionType &pos) const =0 |
access model predicted intensity at position pos More... | |
virtual bool | isContained (const PositionType &pos) const |
check if position pos is part of the model regarding the models cut-off. More... | |
template<typename PeakType > | |
void | fillIntensity (PeakType &peak) const |
Convenience function to set the intensity of a peak to the predicted intensity at its current position, calling virtual void getIntensity(). More... | |
template<class PeakIterator > | |
void | fillIntensities (PeakIterator begin, PeakIterator end) const |
Convenience function that applies fillIntensity() to an iterator range. More... | |
virtual IntensityType | getCutOff () const |
get cutoff value More... | |
virtual void | setCutOff (IntensityType cut_off) |
set cutoff value More... | |
virtual void | getSamples (SamplesType &cont) const =0 |
get reasonable set of samples from the model (i.e. for printing) More... | |
virtual void | getSamples (std::ostream &os) |
fill stream with reasonable set of samples from the model (i.e. for printing) More... | |
Public Member Functions inherited from DefaultParamHandler | |
DefaultParamHandler (const String &name) | |
Constructor with name that is displayed in error messages. More... | |
DefaultParamHandler (const DefaultParamHandler &rhs) | |
Copy constructor. More... | |
virtual | ~DefaultParamHandler () |
Destructor. More... | |
DefaultParamHandler & | operator= (const DefaultParamHandler &rhs) |
Assignment operator. More... | |
virtual bool | operator== (const DefaultParamHandler &rhs) const |
Equality operator. More... | |
void | setParameters (const Param ¶m) |
Sets the parameters. More... | |
const Param & | getParameters () const |
Non-mutable access to the parameters. More... | |
const Param & | getDefaults () const |
Non-mutable access to the default parameters. More... | |
const String & | getName () const |
Non-mutable access to the name. More... | |
void | setName (const String &name) |
Mutable access to the name. More... | |
const std::vector< String > & | getSubsections () const |
Non-mutable access to the registered subsections. More... | |
Protected Member Functions | |
void | updateMembers_ () override |
This method is used to update extra member variables at the end of the setParameters() method. More... | |
Protected Member Functions inherited from DefaultParamHandler | |
void | defaultsToParam_ () |
Updates the parameters after the defaults have been set in the constructor. More... | |
Protected Attributes | |
IntensityType | cut_off_ |
Protected Attributes inherited from DefaultParamHandler | |
Param | param_ |
Container for current parameters. More... | |
Param | defaults_ |
Container for default parameters. This member should be filled in the constructor of derived classes! More... | |
std::vector< String > | subsections_ |
Container for registered subsections. This member should be filled in the constructor of derived classes! More... | |
String | error_name_ |
Name that is displayed in error messages during the parameter checking. More... | |
bool | check_defaults_ |
If this member is set to false no checking if parameters in done;. More... | |
bool | warn_empty_defaults_ |
If this member is set to false no warning is emitted when defaults are empty;. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from DefaultParamHandler | |
static void | writeParametersToMetaValues (const Param &write_this, MetaInfoInterface &write_here, const String &key_prefix="") |
Writes all parameters to meta values. More... | |
Abstract base class for 1-dimensional models.
typedef double CoordinateType |
typedef double IntensityType |
typedef DPosition<1> PositionType |
typedef std::vector<PeakType> SamplesType |
|
inline |
Default constructor.
References DefaultParamHandler::defaults_, and Param::setValue().
|
inlineoverride |
Destructor.
|
inline |
Convenience function that applies fillIntensity() to an iterator range.
References BaseModel::fillIntensity().
|
inline |
Convenience function to set the intensity of a peak to the predicted intensity at its current position, calling virtual void getIntensity().
References BaseModel::getIntensity().
Referenced by BaseModel::fillIntensities().
|
inlinevirtual |
get cutoff value
References BaseModel::cut_off_.
|
pure virtual |
access model predicted intensity at position pos
Implemented in InterpolationModel.
Referenced by BaseModel::fillIntensity(), and BaseModel::isContained().
|
pure virtual |
get reasonable set of samples from the model (i.e. for printing)
Implemented in InterpolationModel.
Referenced by BaseModel::getSamples().
|
inlinevirtual |
fill stream with reasonable set of samples from the model (i.e. for printing)
References BaseModel::getSamples().
|
inlinevirtual |
check if position pos
is part of the model regarding the models cut-off.
References BaseModel::cut_off_, and BaseModel::getIntensity().
assignment operator
References BaseModel::cut_off_, and DefaultParamHandler::operator=().
Referenced by InterpolationModel::operator=().
|
inlinevirtual |
set cutoff value
References BaseModel::cut_off_, DefaultParamHandler::param_, and Param::setValue().
|
inlineoverrideprotectedvirtual |
This method is used to update extra member variables at the end of the setParameters() method.
Also call it at the end of the derived classes' copy constructor and assignment operator.
The default implementation is empty.
Reimplemented from DefaultParamHandler.
Reimplemented in IsotopeModel, InterpolationModel, GaussModel, ExtendedIsotopeModel, EmgModel, and BiGaussModel.
References BaseModel::cut_off_, Param::getValue(), and DefaultParamHandler::param_.
Referenced by InterpolationModel::updateMembers_().
|
protected |