WrappedParamFunction class to wrap any multi-dimensional function object implementing the operator()(const double * x, const double * p) in an interface-like IParamFunction with a vector storing and caching internally the parameter values.
Definition at line 44 of file WrappedParamFunction.h.
Public Member Functions | |
template<class Iterator > | |
WrappedParamFunction (FuncPtr func, unsigned int dim, Iterator begin, Iterator end) | |
Constructor a wrapped function from a pointer to a callable object, the function dimension and an iterator specifying begin and end of parameters. | |
WrappedParamFunction (FuncPtr func, unsigned int dim=1, unsigned int npar=0, double *par=nullptr) | |
Constructor a wrapped function from a pointer to a callable object, the function dimension and number of parameters which are set to zero by default. | |
IMultiGenFunction * | Clone () const override |
clone the function | |
unsigned int | NDim () const override |
Retrieve the dimension of the function. | |
unsigned int | NPar () const override |
Return the number of Parameters. | |
const double * | Parameters () const override |
Access the parameter values. | |
void | SetParameters (const double *p) override |
Set the parameter values. | |
Public Member Functions inherited from ROOT::Math::IParametricFunctionMultiDimTempl< double > | |
double | operator() (const double *x) const |
double | operator() (const double *x, const double *p) const |
Evaluate function at a point x and for given parameters p. | |
Public Member Functions inherited from ROOT::Math::IBaseFunctionMultiDimTempl< T > | |
virtual | ~IBaseFunctionMultiDimTempl ()=default |
virtual bool | HasGradient () const |
T | operator() (const T *x) const |
Evaluate the function at a point x[]. | |
Public Member Functions inherited from ROOT::Math::IBaseParam | |
virtual | ~IBaseParam () |
Virtual Destructor (no operations) | |
virtual std::string | ParameterName (unsigned int i) const |
Return the name of the i-th parameter (starting from zero) Overwrite if want to avoid the default name ("Par_0, Par_1, ...") | |
Private Member Functions | |
double | DoEvalPar (const double *x, const double *p) const override |
evaluate the function given values and parameters (requested interface) | |
Private Attributes | |
unsigned int | fDim |
FuncPtr | fFunc |
std::vector< double > | fParams |
Additional Inherited Members | |
Public Types inherited from ROOT::Math::IParametricFunctionMultiDimTempl< double > | |
typedef IBaseFunctionMultiDimTempl< double > | BaseFunc |
Public Types inherited from ROOT::Math::IBaseFunctionMultiDimTempl< T > | |
typedef T | BackendType |
typedef IBaseFunctionMultiDimTempl< T > | BaseFunc |
#include <Math/WrappedParamFunction.h>
|
inline |
Constructor a wrapped function from a pointer to a callable object, the function dimension and number of parameters which are set to zero by default.
Definition at line 52 of file WrappedParamFunction.h.
|
inline |
Constructor a wrapped function from a pointer to a callable object, the function dimension and an iterator specifying begin and end of parameters.
Definition at line 78 of file WrappedParamFunction.h.
|
inlineoverridevirtual |
clone the function
Implements ROOT::Math::IBaseFunctionMultiDimTempl< T >.
Definition at line 96 of file WrappedParamFunction.h.
|
inlineoverrideprivatevirtual |
evaluate the function given values and parameters (requested interface)
Implements ROOT::Math::IParametricFunctionMultiDimTempl< double >.
Definition at line 116 of file WrappedParamFunction.h.
|
inlineoverridevirtual |
Retrieve the dimension of the function.
Implements ROOT::Math::IBaseFunctionMultiDimTempl< T >.
Definition at line 110 of file WrappedParamFunction.h.
|
inlineoverridevirtual |
Return the number of Parameters.
Implements ROOT::Math::IBaseParam.
Definition at line 108 of file WrappedParamFunction.h.
|
inlineoverridevirtual |
Access the parameter values.
Implements ROOT::Math::IBaseParam.
Definition at line 100 of file WrappedParamFunction.h.
|
inlineoverridevirtual |
Set the parameter values.
p | vector of doubles containing the parameter values. |
to be defined: can user change number of params ? At the moment no.
Implements ROOT::Math::IBaseParam.
Definition at line 104 of file WrappedParamFunction.h.
|
private |
Definition at line 122 of file WrappedParamFunction.h.
|
private |
Definition at line 121 of file WrappedParamFunction.h.
|
private |
Definition at line 123 of file WrappedParamFunction.h.