13 #ifndef ROOT_Math_WrappedMultiTF1
14 #define ROOT_Math_WrappedMultiTF1
198 while (
fLinear && ip < fFunc->GetNpar()) {
214 fLinear(rhs.fLinear),
215 fPolynomial(rhs.fPolynomial),
216 fOwnFunc(rhs.fOwnFunc),
229 if (
this == &rhs)
return *
this;
248 fFunc->SetParameters(par);
250 double prec = this->GetDerivPrecision();
251 fFunc->GradientPar(x, grad, prec);
253 unsigned int np =
NPar();
254 for (
unsigned int i = 0; i < np; ++i)
255 grad[i] = DoParameterDerivative(x, par, i);
265 fFunc->SetParameters(p);
266 double prec = this->GetDerivPrecision();
267 return fFunc->GradientPar(ipar, x, prec);
272 if (ipar == 0)
return 1.0;
273 return std::pow(x[0], static_cast<int>(ipar));
276 const TFormula *df =
dynamic_cast<const TFormula *
>(fFunc->GetLinearPart(ipar));
278 return (const_cast<TFormula *>(df))->EvalPar(x) ;
298 const TF1 *funcToCopy = (
f) ? f : fFunc;
double DoParameterDerivative(const double *x, const double *p, unsigned int ipar) const
evaluate the partial derivative with respect to the parameter
virtual void SetParameters(const Double_t *params)
virtual const char * GetParName(Int_t ipar) const
unsigned int NPar() const
return number of parameters
virtual const TObject * GetLinearPart(Int_t i) const
T DoEvalPar(const T *x, const double *p) const
evaluate function passing coordinates x and vector of parameters
void ParameterGradient(const double *x, const double *par, double *grad) const
Evaluate the all the derivatives (gradient vector) of the function with respect to the parameters at ...
T DoEval(const T *x) const
evaluate function using the cached parameter values (of TF1) re-implement for better efficiency ...
Interface (abstract class) for parametric gradient multi-dimensional functions providing in addition ...
void SetParameters(const double *p)
set parameter values (only the cached one in this class,leave unchanges those of TF1) ...
static double GetDerivPrecision()
get precision value used for calculating the derivative step-size
Class to Wrap a ROOT Function class (like TF1) in a IParamMultiFunction interface of multi-dimensions...
double pow(double, double)
virtual Bool_t IsLinear() const
ROOT::Math::IParametricGradFunctionMultiDimTempl< T > BaseParamFunc
Documentation for the abstract class IBaseFunctionMultiDim.
TF1 * CopyTF1Ptr(const TF1 *funcToCopy)
const double * Parameters() const
get the parameter values (return values from TF1)
virtual Int_t GetNdim() const
T DoEvalVec(const T *x) const
evaluate function using the cached parameter values (of TF1) re-implement for better efficiency ...
const TF1 * GetFunction() const
method to retrieve the internal function pointer
WrappedMultiTF1Templ(TF1 &f, unsigned int dim=0)
constructor from a function pointer to a TF1 If dim = 0 dimension is taken from TF1::GetNdim().
unsigned int NDim() const
Retrieve the dimension of the function.
static void SetDerivPrecision(double eps)
precision value used for calculating the derivative step-size h = eps * |x|.
ROOT::Math::IParametricFunctionMultiDimTempl< T >::BaseFunc BaseFunc
double DerivPrecision(double eps)
~WrappedMultiTF1Templ()
Destructor (no operations).
virtual Int_t GetNumber() const
virtual Double_t * GetParameters() const
WrappedMultiTF1Templ & operator=(const WrappedMultiTF1Templ< T > &rhs)
Assignment operator.
IMultiGenFunctionTempl< T > * Clone() const
Clone the wrapper but not the original function.
virtual Double_t EvalPar(const Double_t *x, const Double_t *params=0)
Evaluate function with given coordinates and parameters.
virtual Int_t GetNpar() const
void SetAndCopyFunction(const TF1 *f=0)
method to set a new function pointer and copy it inside.
std::string ParameterName(unsigned int i) const
return parameter name (from TF1)