ROOT » MATH » MATHCORE » ROOT::Math::BasicFitMethodFunction<ROOT::Math::IBaseFunctionMultiDim>

class ROOT::Math::BasicFitMethodFunction<ROOT::Math::IBaseFunctionMultiDim>: public ROOT::Math::IBaseFunctionMultiDim


   FitMethodFunction class
   Interface for objective functions (like chi2 and likelihood used in the fit)
   In addition to normal function interface provide interface for calculating each
   data contrinution to the function which is required by some algorithm (like Fumili)

   @ingroup  FitMethodFunc

Function Members (Methods)

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

Data Members

private:
unsigned intfNCallsnumber of function calls
unsigned intfNDimfunction dimension
unsigned intfNPointssize of the data

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

unsigned int NDim() const
      Number of dimension (parameters) . From IGenMultiFunction interface

{ return fNDim; }
double DataElement(const double* x, unsigned int i, double* g = 0) const
      method returning the data i-th contribution to the fit objective function
      For example the residual for the least square functions or the pdf element for the
      likelihood functions.
      Estimating eventually also the gradient of the data element if the passed pointer  is not null

unsigned int NPoints() const
      return the number of data points used in evaluating the function

{ return fNPoints; }
unsigned int NCalls() const
      return the total number of function calls (overrided if needed)

{ return fNCalls; }
void UpdateNCalls() const
      update number of calls

{ fNCalls++; }
void ResetNCalls()
      reset number of function calls

{ fNCalls = 0; }