35 #ifndef OPENMS_TRANSFORMATIONS_FEATUREFINDER_FEATUREFINDERALGORITHM_H 36 #define OPENMS_TRANSFORMATIONS_FEATUREFINDER_FEATUREFINDERALGORITHM_H 100 static void registerChildren();
103 virtual void run() = 0;
112 return this->defaults_;
119 features_ = &features;
130 if (seeds.size() != 0)
132 throw Exception::IllegalArgument(__FILE__, __LINE__, __PRETTY_FUNCTION__,
"The used feature detection algorithm does not support user-specified seed lists!");
158 #endif // OPENMS_TRANSFORMATIONS_FEATUREFINDER_FEATUREFINDERALGORITHM_H
UInt no_exceptions
Definition: FeatureFinderAlgorithm.h:54
FeatureFinder * ff_
Pointer to the calling FeatureFinder that is used to access the feature flags.
Definition: FeatureFinderAlgorithm.h:145
FeatureMap * features_
Output data pointer.
Definition: FeatureFinderAlgorithm.h:142
MapType::CoordinateType CoordinateType
Coordinate/Position type of peaks.
Definition: FeatureFinderAlgorithm.h:81
const MapType * map_
Input data pointer.
Definition: FeatureFinderAlgorithm.h:139
std::map< String, UInt > mz_model
Definition: FeatureFinderAlgorithm.h:55
virtual void setSeeds(const FeatureMap &seeds)
Sets a reference to the calling FeatureFinder.
Definition: FeatureFinderAlgorithm.h:128
A container for features.
Definition: FeatureMap.h:93
FeatureFinderAlgorithm()
default constructor
Definition: FeatureFinderAlgorithm.h:86
Abstract base class for FeatureFinder algorithms.
Definition: FeatureFinderAlgorithm.h:74
virtual Param getDefaultParameters() const
Returns the default parameters. Reimplement.
Definition: FeatureFinderAlgorithm.h:110
std::map< float, UInt > mz_stdev
Definition: FeatureFinderAlgorithm.h:56
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
A method or algorithm argument contains illegal values.
Definition: Exception.h:634
MSExperiment< Peak1D > MapType
Input map type.
Definition: FeatureFinderAlgorithm.h:79
std::map< String, UInt > exception
Definition: FeatureFinderAlgorithm.h:53
std::vector< UInt > charge
Definition: FeatureFinderAlgorithm.h:57
Summary of fitting results.
Definition: FeatureFinderAlgorithm.h:51
Management and storage of parameters / INI files.
Definition: Param.h:75
double corr_min
Definition: FeatureFinderAlgorithm.h:58
virtual ~FeatureFinderAlgorithm()
destructor
Definition: FeatureFinderAlgorithm.h:95
MapType::IntensityType IntensityType
Intensity type of peaks.
Definition: FeatureFinderAlgorithm.h:83
The main feature finder class.
Definition: FeatureFinder.h:57
Summary()
Initial values.
Definition: FeatureFinderAlgorithm.h:61
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
void setData(const MapType &map, FeatureMap &features, FeatureFinder &ff)
Sets a reference to the calling FeatureFinder.
Definition: FeatureFinderAlgorithm.h:116