ROOT 6.14/05 Reference Guide |
Documentation for the abstract class IBaseFunctionMultiDim.
Interface (abstract class) for generic functions objects of multi-dimension Provides a method to evaluate the function given a vector of coordinate values, by implementing operator() (const double *). In addition it defines the interface for copying functions via the pure virtual method Clone() and the interface for getting the function dimension via the NDim() method. Derived classes must implement the pure private virtual method DoEval(const double *) for the function evaluation in addition to NDim() and Clone().
Definition at line 62 of file IFunction.h.
Public Types | |
typedef T | BackendType |
typedef IBaseFunctionMultiDimTempl< T > | BaseFunc |
Public Member Functions | |
IBaseFunctionMultiDimTempl () | |
virtual | ~IBaseFunctionMultiDimTempl () |
virtual destructor More... | |
virtual IBaseFunctionMultiDimTempl< T > * | Clone () const =0 |
Clone a function. More... | |
virtual unsigned int | NDim () const =0 |
Retrieve the dimension of the function. More... | |
T | operator() (const T *x) const |
Evaluate the function at a point x[]. More... | |
Private Member Functions | |
virtual T | DoEval (const T *x) const =0 |
Implementation of the evaluation function. More... | |
#include <Math/IFunction.h>
typedef T ROOT::Math::IBaseFunctionMultiDimTempl< T >::BackendType |
Definition at line 66 of file IFunction.h.
typedef IBaseFunctionMultiDimTempl<T> ROOT::Math::IBaseFunctionMultiDimTempl< T >::BaseFunc |
Definition at line 67 of file IFunction.h.
|
inline |
Definition at line 70 of file IFunction.h.
|
inlinevirtual |
virtual destructor
Definition at line 75 of file IFunction.h.
|
pure virtual |
Clone a function.
Each derived class must implement their version of the Clone method
Implemented in ROOT::Math::GradFunctor, ROOT::Math::Functor, ROOT::Math::MultiDimParamGradFunctionAdapter, ROOT::Math::WrappedMemMultiFunction< FuncObj, MemFuncPtr >, ROOT::Math::WrappedParamFunctionGen< FuncPtr >, ROOT::Math::WrappedMultiFunction< Func >, ROOT::Math::MultiDimParamFunctionAdapter, ROOT::Math::LSResidualFunc, ROOT::Math::WrappedParamFunction< FuncPtr >, ROOT::Math::MultiNumGradFunction, ROOT::Math::WrappedMultiTF1Templ< T >, ROOT::Math::MinimTransformFunction, TPyMultiGradFunction, RooMinimizerFcn, ROOT::Fit::FcnAdapter, RooMultiGenFunction, and TPyMultiGenFunction.
|
privatepure virtual |
Implementation of the evaluation function.
Must be implemented by derived classes
Implemented in ROOT::Math::IParametricGradFunctionMultiDimTempl< T >, ROOT::Math::WrappedMultiTF1Templ< T >, and ROOT::Math::IParametricFunctionMultiDimTempl< T >.
|
pure virtual |
Retrieve the dimension of the function.
Implemented in ROOT::Math::GradFunctor, ROOT::Math::Functor, ROOT::Math::MultiDimParamGradFunctionAdapter, ROOT::Math::WrappedMemMultiFunction< FuncObj, MemFuncPtr >, ROOT::Math::WrappedParamFunctionGen< FuncPtr >, ROOT::Math::WrappedMultiFunction< Func >, ROOT::Math::MultiDimParamFunctionAdapter, ROOT::Math::WrappedParamFunction< FuncPtr >, ROOT::Math::LSResidualFunc, ROOT::Math::WrappedMultiTF1Templ< T >, ROOT::Math::MultiNumGradFunction, ROOT::Math::MinimTransformFunction, TPyMultiGradFunction, RooMinimizerFcn, RooMultiGenFunction, ROOT::Fit::FcnAdapter, and TPyMultiGenFunction.
|
inline |
Evaluate the function at a point x[].
Use the pure virtual private method DoEval which must be implemented by the sub-classes
Definition at line 92 of file IFunction.h.