Documentation for the abstract class IBaseParam. It defines the interface for dealing with the function parameters This is used only for internal convinience, to avoid redefining the Parameter API for the one and the multi-dim functions. Concrete class should derive from ROOT::Math::IParamFunction and not from this class. @ingroup CppFunctions
~IParametricFunctionOneDim() | |
virtual ROOT::Math::IBaseFunctionOneDim* | ROOT::Math::IBaseFunctionOneDim::Clone() const |
virtual unsigned int | ROOT::Math::IBaseParam::NPar() const |
virtual double | operator()(double x, const double* p) |
virtual double | operator()(const double* x, const double* p) |
ROOT::Math::IParametricFunctionOneDim& | operator=(const ROOT::Math::IParametricFunctionOneDim&) |
virtual string | ROOT::Math::IBaseParam::ParameterName(unsigned int i) const |
virtual const double* | ROOT::Math::IBaseParam::Parameters() const |
virtual void | ROOT::Math::IBaseParam::SetParameters(const double* p) |
Evaluate function at a point x and for parameters p. This method may be overloaded for better efficiencies by the users For example the method could not change the internal parameters value kept in the derived class. This behaviour is not defined and is left intentionally to the implementation of the derived classes