Base template class for all Parametric Functions.
The template argument is the type of parameteric function interface is implementing like Parameteric 1D, Multi-Dim or gradient parametric.
A parameteric function is a Generic Function with parameters, so it is a function object which carries a state, the parameters. The parameters are described with a standard vector of doubles.
This class contains the default implementations for the methods defined in the IParamFunction interface for dealing with parameters Specific parameteric function classes should derive from this class if they want to profit from default implementations for the abstract methods. The derived classes need to implement only the DoEvalPar( x, p) and Clone() methods for non-gradient parameteric functions or DoParameterDerivative(x,p,ipar) for gradient par functions
Definition at line 67 of file ParamFunction.h.
Public Types | |
typedef IPFType::BaseFunc | BaseFunc |
typedef IPFType | BaseParFunc |
Public Member Functions | |
ParamFunction (unsigned int npar=0) | |
Construct a parameteric function with npar parameters. More... | |
virtual | ~ParamFunction () |
unsigned int | NPar () const |
Return the number of parameters. More... | |
virtual const double * | Parameters () const |
Access the parameter values. More... | |
virtual void | SetParameters (const double *p) |
Set the parameter values. More... | |
Protected Attributes | |
std::vector< double > | fParams |
Private Attributes | |
unsigned int | fNpar |
Return true if the calculation of derivatives is implemented. More... | |
#include <Math/ParamFunction.h>
typedef IPFType::BaseFunc ROOT::Math::ParamFunction< IPFType >::BaseFunc |
Definition at line 72 of file ParamFunction.h.
typedef IPFType ROOT::Math::ParamFunction< IPFType >::BaseParFunc |
Definition at line 71 of file ParamFunction.h.
|
inline |
Construct a parameteric function with npar parameters.
npar | number of parameters (default is zero) |
Definition at line 78 of file ParamFunction.h.
|
inlinevirtual |
Definition at line 85 of file ParamFunction.h.
|
inline |
Return the number of parameters.
Definition at line 112 of file ParamFunction.h.
|
inlinevirtual |
Access the parameter values.
Definition at line 96 of file ParamFunction.h.
|
inlinevirtual |
Set the parameter values.
p | vector of doubles containing the parameter values. |
Definition at line 102 of file ParamFunction.h.
|
private |
Return true if the calculation of derivatives is implemented.
Return true if the calculation of derivatives with respect to the Parameters is implemented
Definition at line 137 of file ParamFunction.h.
|
protected |
Definition at line 142 of file ParamFunction.h.