ROOT logo
ROOT » MATH » MATHCORE » ROOT::Math::IBaseFunctionOneDim

class ROOT::Math::IBaseFunctionOneDim


       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().

       @ingroup  GenFunc

This class is also known as (typedefs to this class)

ROOT::Math::IGradientFunctionOneDim::BaseFunc, ROOT::Math::IGenFunction, ROOT::Math::IParametricGradFunctionOneDim::BaseFunc, ROOT::Math::Functor1D::Impl, ROOT::Math::IBaseFunctionOneDim::BaseFunc, ROOT::Math::GradFunctor1D::ImplBase, ROOT::Math::WrappedTF1::BaseFunc, ROOT::Math::ParamFunction<ROOT::Math::IParametricGradFunctionOneDim>::BaseFunc, ROOT::Math::Functor1D::ImplBase, ROOT::Math::IParametricFunctionOneDim::BaseFunc

Function Members (Methods)

 
    This is an abstract class, constructors will not be documented.
    Look at the header to check for available constructors.

public:
virtual~IBaseFunctionOneDim()
virtual ROOT::Math::IBaseFunctionOneDim*Clone() const
doubleoperator()(double x) const
doubleoperator()(const double* x) const
ROOT::Math::IBaseFunctionOneDim&operator=(const ROOT::Math::IBaseFunctionOneDim&)
private:
virtual doubleDoEval(double x) const

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

IBaseFunctionMultiDim * Clone() const
          Clone a function.
          Each derived class must implement his version of the Clone method

double operator()(const double* x) const
          Evaluate the function at a point x[].
          Use the pure virtual private method DoEval which must be implemented by the sub-classes

return DoEval(x)
double operator()(double x) const
         Template method to eveluate the function using the begin of an iterator
         User is responsible to provide correct size for the iterator

virtual ~IBaseFunctionOneDim()
         virtual destructor

{}