13#ifndef ROOT_TLinearMinimizer
14#define ROOT_TLinearMinimizer
69 bool SetVariable(
unsigned int ,
const std::string & ,
double ,
double )
override {
return true; }
72 bool SetFixedVariable(
unsigned int ,
const std::string & ,
double )
override;
81 double Edm()
const override {
return 0; }
84 const double *
X()
const override {
return &
fParams.front(); }
87 const double *
MinGradient()
const override {
return nullptr; }
90 unsigned int NCalls()
const override {
return 0; }
94 unsigned int NDim()
const override {
return fDim; }
110 double CovMatrix(
unsigned int i,
unsigned int j)
const override {
116 if (
fCovar.empty())
return 0;
#define ClassDef(name, id)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
Documentation for the abstract class IBaseFunctionMultiDim.
Interface (abstract class) for multi-dimensional functions providing a gradient calculation.
Abstract Minimizer class, defining the interface for the various minimizer (like Minuit2,...
int fStatus
status of minimizer
TLinearMinimizer class: minimizer implementation based on TMinuit.
double CovMatrix(unsigned int i, unsigned int j) const override
return covariance matrices elements if the variable is fixed the matrix is zero The ordering of the v...
bool ProvidesError() const override
minimizer provides error and error matrix
void SetFunction(const ROOT::Math::IMultiGenFunction &func) override
set the fit model function
TLinearMinimizer & operator=(const TLinearMinimizer &rhs)
Assignment operator.
double MinValue() const override
return minimum function value
~TLinearMinimizer() override
Destructor (no operations)
bool fRobust
return reference to the objective function virtual const ROOT::Math::IGenFunction & Function() const;
const double * X() const override
return pointer to X values at the minimum
unsigned int NDim() const override
this is <= Function().NDim() which is the total number of variables (free+ constrained ones)
bool SetVariable(unsigned int, const std::string &, double, double) override
set free variable (dummy impl. since there is no need to set variables in the Linear Fitter)
int CovMatrixStatus() const override
return covariance matrix status
const double * Errors() const override
return errors at the minimum
const ROOT::Math::IMultiGradFunction * fObjFunc
bool Minimize() override
method to perform the minimization
double Edm() const override
return expected distance reached from the minimum
std::vector< double > fParams
std::vector< double > fCovar
std::vector< double > fErrors
unsigned int NFree() const override
number of free variables (real dimension of the problem) this is <= Function().NDim() which is the to...
const double * MinGradient() const override
return pointer to gradient values at the minimum
unsigned int NCalls() const override
number of function calls to reach the minimum
bool SetFixedVariable(unsigned int, const std::string &, double) override
set fixed variable (override if minimizer supports them )