Template class to wrap any C++ callable object implementing operator() (const double * x) in a multi-dimensional function interface.
It provides a ROOT::Math::IGenMultiFunction-like signature
Note: If you want to wrap just the reference (to avoid copying) you need to use Func& or const Func & as template parameter. The former should be used when the operator() is not a const method of Func
Definition at line 154 of file WrappedFunction.h.
Public Member Functions | |
WrappedMultiFunction (Func f, unsigned int dim=1) | |
construct from the pointer to the object and the member function | |
WrappedMultiFunction * | Clone () const |
clone (required by the interface) | |
unsigned int | NDim () const |
Retrieve the dimension of the function. | |
Public Member Functions inherited from ROOT::Math::IBaseFunctionMultiDimTempl< T > | |
IBaseFunctionMultiDimTempl () | |
virtual | ~IBaseFunctionMultiDimTempl () |
virtual destructor | |
T | operator() (const T *x) const |
Evaluate the function at a point x[]. | |
Private Member Functions | |
virtual double | DoEval (const double *x) const |
Private Attributes | |
unsigned int | fDim |
Func | fFunc |
Additional Inherited Members | |
Public Types inherited from ROOT::Math::IBaseFunctionMultiDimTempl< T > | |
typedef T | BackendType |
typedef IBaseFunctionMultiDimTempl< T > | BaseFunc |
#include <Math/WrappedFunction.h>
|
inline |
construct from the pointer to the object and the member function
Definition at line 162 of file WrappedFunction.h.
|
inlinevirtual |
clone (required by the interface)
Implements ROOT::Math::IBaseFunctionMultiDimTempl< T >.
Definition at line 170 of file WrappedFunction.h.
|
inlineprivatevirtual |
Definition at line 180 of file WrappedFunction.h.
|
inlinevirtual |
Retrieve the dimension of the function.
Implements ROOT::Math::IBaseFunctionMultiDimTempl< T >.
Definition at line 174 of file WrappedFunction.h.
|
private |
Definition at line 186 of file WrappedFunction.h.
|
private |
Definition at line 185 of file WrappedFunction.h.