Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
Fitter.h
Go to the documentation of this file.
1// @(#)root/mathcore:$Id$
2// Author: L. Moneta Wed Aug 30 11:05:19 2006
3
4/**********************************************************************
5 * *
6 * Copyright (c) 2006 LCG ROOT Math Team, CERN/PH-SFT *
7 * *
8 * *
9 **********************************************************************/
10
11// Header file for class Fitter
12
13#ifndef ROOT_Fit_Fitter
14#define ROOT_Fit_Fitter
15
16/**
17@defgroup Fit Fitting and Parameter Estimation
18
19Classes used for fitting (regression analysis) and estimation of parameter values given a data sample.
20
21@ingroup MathCore
22
23*/
24
25#include "Fit/BinData.h"
26#include "Fit/UnBinData.h"
27#include "Fit/FitConfig.h"
29#include "Fit/FitResult.h"
30#include "Math/IParamFunction.h"
31#include <memory>
32
33namespace ROOT {
34
35
36 namespace Math {
37 class Minimizer;
38
39 // should maybe put this in a FitMethodFunctionfwd file
40 template<class FunctionType> class BasicFitMethodFunction;
41
42 // define the normal and gradient function
45
46 }
47
48 /**
49 Namespace for the fitting classes
50 @ingroup Fit
51 */
52
53 namespace Fit {
54
55/**
56 @defgroup FitMain User Fitting classes
57
58 Main Classes used for fitting a given data set
59 @ingroup Fit
60*/
61
62
63//___________________________________________________________________________________
64/**
65 Fitter class, entry point for performing all type of fits.
66 Fits are performed using the generic ROOT::Fit::Fitter::Fit method.
67 The inputs are the data points and a model function (using a ROOT::Math::IParamFunction)
68 The result of the fit is returned and kept internally in the ROOT::Fit::FitResult class.
69 The configuration of the fit (parameters, options, etc...) are specified in the
70 ROOT::Math::FitConfig class.
71 After fitting the config of the fit will be modified to have the new values the resulting
72 parameter of the fit with step sizes equal to the errors. FitConfig can be preserved with
73 initial parameters by calling FitConfig.SetUpdateAfterFit(false);
74
75 @ingroup FitMain
76*/
77class Fitter {
78
79public:
80
82 template <class T>
84#ifdef R__HAS_VECCORE
87#else
90#endif
94
97
98
99 /**
100 Default constructor
101 */
102 Fitter () {}
103
104 /**
105 Constructor from a result
106 */
107 Fitter (const std::shared_ptr<FitResult> & result);
108
109
110 /**
111 Destructor.
112 Make it virtual in case users derive from Fitter class to extend it by adding new methods.
113 This is needed to avoid a warning seen when doing from Python
114 (see ROOT issue [#12391](https://github.com/root-project/root/issues/12391) ).
115 Note that the Fitter class does not provide virtual functions to be re-implemented by derived classes.
116 */
117 virtual ~Fitter () {}
118
119 /**
120 Copy constructor (disabled, class is not copyable)
121 */
122 Fitter(const Fitter &) = delete;
123
124 /**
125 Assignment operator (disabled, class is not copyable)
126 */
127 Fitter & operator = (const Fitter &) = delete;
128
129
130public:
131
132 /**
133 fit a data set using any generic model function
134 If data set is binned a least square fit is performed
135 If data set is unbinned a maximum likelihood fit (not extended) is done
136 Pre-requisite on the function:
137 it must implement the 1D or multidimensional parametric function interface.
138 Note that both the input data and the function object are copied by the Fitter.
139 */
140 template <class Data, class Function,
141 class cond = typename std::enable_if<!(std::is_same<Function, ROOT::EExecutionPolicy>::value ||
142 std::is_same<Function, int>::value),
144 bool Fit(const Data &data, const Function &func,
146 {
147 SetFunction(func);
148 return Fit(data, executionPolicy);
149 }
150
151 /**
152 Fit a binned data set using a least square fit.
153 Note that the provided input data are copied in the Fitter class.
154 Use the next function (passing a `shared_ptr` to the BinData class if you want to avoid
155 copying.
156 */
158 return LeastSquareFit(data, executionPolicy);
159 }
160
161 /**
162 Fit a binned data set using a least square fit.
163 Pass the input data using a `shared_ptr` for NOT copying the input data.
164 */
165 bool Fit(const std::shared_ptr<BinData> & data, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
166 return LeastSquareFit(data, executionPolicy);
167 }
168
169 /**
170 Fit a binned data set using a least square fit copying the input data.
171 */
173 SetData(data);
174 return DoLeastSquareFit(executionPolicy);
175 }
176 /**
177 Fit a binned data set using a least square fit NOT copying the input data.
178 */
179 bool LeastSquareFit(const std::shared_ptr<BinData> & data, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
180 SetData(data);
181 return DoLeastSquareFit(executionPolicy);
182 }
183
184 /**
185 Fit an un-binned data set using the negative log-likelihood method.
186 This function copies the input data.
187 */
188 bool Fit(const UnBinData & data, bool extended = false, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
189 return LikelihoodFit(data, extended, executionPolicy);
190 }
191 /**
192 Fit an un-binned data set using the negative log-likelihood method.
193 This function uses a `shared_ptr` to avoid copying the input data.
194 */
195 bool Fit(const std::shared_ptr<UnBinData> & data, bool extended = false, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
196 return LikelihoodFit(data, extended, executionPolicy);
197 }
198
199 /**
200 Binned Likelihood fit copying the input data.
201 Default is extended.
202 */
203 bool LikelihoodFit(const BinData &data, bool extended = true,
205 SetData(data);
206 return DoBinnedLikelihoodFit(extended, executionPolicy);
207 }
208 /**
209 Binned Likelihood fit using a `shared_ptr` for NOT copying the input data.
210 Default is extended.
211 */
212 bool LikelihoodFit(const std::shared_ptr<BinData> &data, bool extended = true,
214 SetData(data);
215 return DoBinnedLikelihoodFit(extended, executionPolicy);
216 }
217 /**
218 Un-binned Likelihood fit copying the input data
219 Default is NOT extended
220 */
221 bool LikelihoodFit(const UnBinData & data, bool extended = false, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
222 SetData(data);
223 return DoUnbinnedLikelihoodFit(extended, executionPolicy);
224 }
225 /**
226 Un-binned Likelihood fit using a `shared_ptr` for NOT copying the input data.
227 Default is NOT extended
228 */
229 bool LikelihoodFit(const std::shared_ptr<UnBinData> & data, bool extended = false, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential) {
230 SetData(data);
231 return DoUnbinnedLikelihoodFit(extended, executionPolicy);
232 }
233
234 /**
235 Likelihood fit given a data set (Binned or Un-binned) using any generic model function.
236 This interface copies the input data and the model function object
237 */
238 template < class Data , class Function>
239 bool LikelihoodFit( const Data & data, const Function & func, bool extended) {
240 SetFunction(func);
241 return LikelihoodFit(data, extended);
242 }
243
244 /**
245 Do a linear fit copying the input data
246 */
247 bool LinearFit(const BinData & data) {
248 SetData(data);
249 return DoLinearFit();
250 }
251 /**
252 Do a linear fit using a `shared_ptr` for NOT copying the input data
253 */
254 bool LinearFit(const std::shared_ptr<BinData> & data) {
255 SetData(data);
256 return DoLinearFit();
257 }
258
259 /**
260 Fit using the a generic FCN function as a C++ callable object implementing
261 double () (const double *)
262 Note that the function dimension (i.e. the number of parameter) is needed in this case
263 For the options see documentation for following methods FitFCN(IMultiGenFunction & fcn,..)
264 */
265 template <class Function>
266 bool FitFCN(unsigned int npar, Function & fcn, const double * params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
267
268 /**
269 Set a generic FCN function as a C++ callable object implementing
270 double () (const double *)
271 Note that the function dimension (i.e. the number of parameter) is needed in this case
272 For the options see documentation for following methods FitFCN(IMultiGenFunction & fcn,..)
273 */
274 template <class Function>
275 bool SetFCN(unsigned int npar, Function & fcn, const double * params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
276
277 /**
278 Fit using the given FCN function represented by a multi-dimensional function interface
279 (ROOT::Math::IMultiGenFunction).
280 Give optionally the initial parameter values, data size to have the fit Ndf correctly
281 set in the FitResult and flag specifying if it is a chi2 fit.
282 Note that if the parameters values are not given (params=0) the
283 current parameter settings are used. The parameter settings can be created before
284 by using the FitConfig::SetParamsSetting. If they have not been created they are created
285 automatically when the params pointer is not zero.
286 Note that passing a params != 0 will set the parameter settings to the new value AND also the
287 step sizes to some pre-defined value (stepsize = 0.3 * abs(parameter_value) )
288 */
289 bool FitFCN(const ROOT::Math::IMultiGenFunction &fcn, const double *params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
290
291 /**
292 Fit using a FitMethodFunction interface. Same as method above, but now extra information
293 can be taken from the function class
294 */
295 bool FitFCN(const ROOT::Math::FitMethodFunction & fcn, const double *params = nullptr);
296
297 /**
298 Set the FCN function represented by a multi-dimensional function interface
299 (ROOT::Math::IMultiGenFunction) and optionally the initial parameters
300 See also note above for the initial parameters for FitFCN
301 */
302 bool SetFCN(const ROOT::Math::IMultiGenFunction &fcn, const double *params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
303
304 /**
305 Set the FCN function represented by a multi-dimensional function interface
306 (ROOT::Math::IMultiGenFunction) and optionally the initial parameters
307 See also note above for the initial parameters for FitFCN
308 With this interface we pass in addition a ModelFunction that will be attached to the FitResult and
309 used to compute confidence interval of the fit
310 */
311 bool SetFCN(const ROOT::Math::IMultiGenFunction &fcn, const IModelFunction & func, const double *params = nullptr,
312 unsigned int dataSize = 0, bool chi2fit = false);
313
314 /**
315 Set the objective function (FCN) using a FitMethodFunction interface.
316 Same as method above, but now extra information can be taken from the function class
317 */
318 bool SetFCN(const ROOT::Math::FitMethodFunction & fcn, const double *params = nullptr);
319
320 /**
321 Fit using a FitMethodGradFunction interface. Same as method above, but now extra information
322 can be taken from the function class
323 */
324 bool FitFCN(const ROOT::Math::FitMethodGradFunction & fcn, const double *params = nullptr);
325
326 /**
327 Set the objective function (FCN) using a FitMethodGradFunction interface.
328 Same as method above, but now extra information can be taken from the function class
329 */
330 bool SetFCN(const ROOT::Math::FitMethodGradFunction & fcn, const double *params = nullptr);
331
332
333 /**
334 fit using user provided FCN with Minuit-like interface
335 If npar = 0 it is assumed that the parameters are specified in the parameter settings created before
336 For the options same consideration as in the previous method
337 */
338 typedef void (* MinuitFCN_t )(int &npar, double *gin, double &f, double *u, int flag);
339 bool FitFCN( MinuitFCN_t fcn, int npar = 0, const double *params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
340
341 /**
342 set objective function using user provided FCN with Minuit-like interface
343 If npar = 0 it is assumed that the parameters are specified in the parameter settings created before
344 For the options same consideration as in the previous method
345 */
346 bool SetFCN( MinuitFCN_t fcn, int npar = 0, const double *params = nullptr, unsigned int dataSize = 0, bool chi2fit = false);
347
348 /**
349 Perform a fit with the previously set FCN function. Require SetFCN before
350 */
351 bool FitFCN();
352
353 /**
354 Perform a simple FCN evaluation. FitResult will be modified and contain the value of the FCN
355 */
356 bool EvalFCN();
357
358
359
360 /**
361 Set the fitted function (model function) from a parametric function interface
362 */
363 void SetFunction(const IModelFunction & func, bool useGradient = false);
364
365 /**
366 Set the fitted function (model function) from a vectorized parametric function interface
367 */
368#ifdef R__HAS_VECCORE
369 template <class NotCompileIfScalarBackend = std::enable_if<!(std::is_same<double, ROOT::Double_v>::value)>>
370 void SetFunction(const IModelFunction_v &func, bool useGradient = false);
371
372 template <class NotCompileIfScalarBackend = std::enable_if<!(std::is_same<double, ROOT::Double_v>::value)>>
373 void SetFunction(const IGradModelFunction_v &func, bool useGradient = true);
374#endif
375 /**
376 Set the fitted function from a parametric 1D function interface
377 */
378 void SetFunction(const IModel1DFunction & func, bool useGradient = false);
379
380 /**
381 Set the fitted function (model function) from a parametric gradient function interface
382 */
383 void SetFunction(const IGradModelFunction & func, bool useGradient = true);
384 /**
385 Set the fitted function from 1D gradient parametric function interface
386 */
387 void SetFunction(const IGradModel1DFunction & func, bool useGradient = true);
388
389
390 /**
391 get fit result
392 */
393 const FitResult & Result() const {
394 assert( fResult.get() );
395 return *fResult;
396 }
397
398
399 /**
400 perform an error analysis on the result using the Hessian
401 Errors are obtained from the inverse of the Hessian matrix
402 To be called only after fitting and when a minimizer supporting the Hessian calculations is used
403 otherwise an error (false) is returned.
404 A new FitResult with the Hessian result will be produced
405 */
406 bool CalculateHessErrors();
407
408 /**
409 perform an error analysis on the result using MINOS
410 To be called only after fitting and when a minimizer supporting MINOS is used
411 otherwise an error (false) is returned.
412 The result will be appended in the fit result class
413 Optionally a vector of parameter indices can be passed for selecting
414 the parameters to analyse using FitConfig::SetMinosErrors
415 */
417
418 /**
419 access to the fit configuration (const method)
420 */
421 const FitConfig & Config() const { return fConfig; }
422
423 /**
424 access to the configuration (non const method)
425 */
426 FitConfig & Config() { return fConfig; }
427
428 /**
429 query if fit is binned. In cse of false the fit can be unbinned
430 or is not defined (like in case of fitting through a ROOT::Fit::Fitter::FitFCN)
431 */
432 bool IsBinFit() const { return fBinFit; }
433
434 /**
435 return pointer to last used minimizer
436 (is NULL in case fit is not yet done)
437 This pointer is guaranteed to be valid as far as the fitter class is valid and a new fit is not redone.
438 To be used only after fitting.
439 The pointer should not be stored and will be invalided after performing a new fitting.
440 In this case a new instance of ROOT::Math::Minimizer will be re-created and can be
441 obtained calling again GetMinimizer()
442 */
444
445 /**
446 return pointer to last used objective function
447 (is NULL in case fit is not yet done)
448 This pointer will be valid as far as the fitter class
449 has not been deleted. To be used after the fitting.
450 The pointer should not be stored and will be invalided after performing a new fitting.
451 In this case a new instance of the function pointer will be re-created and can be
452 obtained calling again GetFCN()
453 */
455 return fObjFunction.get();
456 }
457
458
459 /**
460 apply correction in the error matrix for the weights for likelihood fits
461 This method can be called only after a fit. The
462 passed function (loglw2) is a log-likelihood function implemented using the
463 sum of weight squared
464 When using FitConfig.SetWeightCorrection() this correction is applied
465 automatically when doing a likelihood fit (binned or unbinned)
466 */
467 bool ApplyWeightCorrection(const ROOT::Math::IMultiGenFunction & loglw2, bool minimizeW2L=false);
468
469 /// Set number of fit points when using an external FCN function
470 /// This function can be called after Fit to set the correct number of Ndf in FitResult
471 void SetNumberOfFitPoints(unsigned int npoints) {
472 if (fExtObjFunction) fDataSize = npoints;
473 if (!fResult->IsEmpty()) fResult->SetChi2AndNdf(-1,npoints);
474 }
475
476 /// Set the type of fit when using an external FCN
477 /// possible types are : 1 (least-square), 2 (unbinned-likelihood), 3 (binned-likelihood)
478 /// Note that in case of binned likelihood fit the chi2 will be computed as 2 * MinFCN()
479 /// Note this function should be called before fitting to have effect on th FitResult
480 void SetFitType(int type) {
482 }
483
484
485protected:
486
487
488 /// least square fit
490 /// binned likelihood fit
491 bool DoBinnedLikelihoodFit(bool extended = true, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential);
492 /// un-binned likelihood fit
493 bool DoUnbinnedLikelihoodFit( bool extended = false, const ROOT::EExecutionPolicy &executionPolicy = ROOT::EExecutionPolicy::kSequential);
494 /// linear least square fit
495 bool DoLinearFit();
496 /// Set Objective function
497 bool DoSetFCN(bool useExtFCN, const ROOT::Math::IMultiGenFunction &fcn, const double *params, unsigned int dataSize,
498 bool chi2fit);
499
500 // initialize the minimizer
501 bool DoInitMinimizer();
502 /// do minimization
503 template<class ObjFunc_t>
504 bool DoMinimization(std::unique_ptr<ObjFunc_t> f, const ROOT::Math::IMultiGenFunction * chifunc = nullptr);
505 // do minimization for weighted likelihood fits
506 template<class ObjFunc_t>
507 bool DoWeightMinimization(std::unique_ptr<ObjFunc_t> f, const ROOT::Math::IMultiGenFunction * chifunc = nullptr);
508 // do minimization after having set the objective function
509 bool DoMinimization(const ROOT::Math::IMultiGenFunction * chifunc = nullptr);
510 // update config after fit
511 void DoUpdateFitConfig();
512 // update minimizer options for re-fitting
513 bool DoUpdateMinimizerOptions(bool canDifferentMinim = true);
514 // get function calls from the FCN
515 int GetNCallsFromFCN();
516
517 /// Set the input data for the fit using a shared ptr (No Copying)
518 template <class Data>
519 void SetData(const std::shared_ptr<Data> & data) {
520 fData = std::static_pointer_cast<Data>(data);
521 }
522
523 /// Set the input data for the fit (Copying the given data object)
524 template <class Data>
525 void SetData(const Data & data) {
526 auto dataClone = std::make_shared<Data>(data);
527 SetData(dataClone);
528 }
529
530 /// look at the user provided FCN and get data and model function is
531 /// they derive from ROOT::Fit FCN classes
532 void ExamineFCN();
533
534
535 /// internal functions to get data set and model function from FCN
536 /// useful for fits done with customized FCN classes
537 template <class ObjFuncType>
538 bool GetDataFromFCN();
539
540 /// Return pointer to the used objective function for fitting.
541 /// If using an external function (e.g. given in SetFCN), return the cached pointer,
542 /// otherwise use the one stored as shared ptr and managed by the Fitter class
544 // need to specify here full return type since when using the typedef (IMultiGenFunction)
545 // there is an error when using the class in Python (see issue #12391)
547 }
548
549private:
550
551 bool fUseGradient = false; ///< flag to indicate if using gradient or not
552
553 bool fBinFit = false; ///< flag to indicate if fit is binned
554 ///< in case of false the fit is unbinned or undefined)
555 ///< flag it is used to compute chi2 for binned likelihood fit
556
557 int fFitType = 0; ///< type of fit (0 undefined, 1 least square, 2 likelihood, 3 binned likelihood)
558
559 int fDataSize = 0; ///< size of data sets (need for Fumili or LM fitters)
560
561 FitConfig fConfig; ///< fitter configuration (options and parameter settings)
562
563 std::shared_ptr<IModelFunction_v> fFunc_v; ///<! copy of the fitted function containing on output the fit result
564
565 std::shared_ptr<IModelFunction> fFunc; ///<! copy of the fitted function containing on output the fit result
566
567 std::shared_ptr<ROOT::Fit::FitResult> fResult; ///<! pointer to the object containing the result of the fit
568
569 std::shared_ptr<ROOT::Math::Minimizer> fMinimizer; ///<! pointer to used minimizer
570
571 std::shared_ptr<ROOT::Fit::FitData> fData; ///<! pointer to the fit data (binned or unbinned data)
572
573 std::shared_ptr<ROOT::Math::IMultiGenFunction> fObjFunction; ///<! pointer to used objective function
574
575 const ROOT::Math::IMultiGenFunction * fExtObjFunction = nullptr; ///<! pointer to an external FCN
576
577};
578
579
580// internal functions to get data set and model function from FCN
581// useful for fits done with customized FCN classes
582template <class ObjFuncType>
584 const ObjFuncType * objfunc = dynamic_cast<const ObjFuncType*>(ObjFunction());
585 if (objfunc) {
586 fFunc = objfunc->ModelFunctionPtr();
587 fData = objfunc->DataPtr();
588 return true;
589 }
590 else {
591 return false;
592 }
593}
594
595#ifdef R__HAS_VECCORE
596template <class NotCompileIfScalarBackend>
597void Fitter::SetFunction(const IModelFunction_v &func, bool useGradient)
598{
599 fUseGradient = useGradient;
600 if (fUseGradient) {
601 const IGradModelFunction_v *gradFunc = dynamic_cast<const IGradModelFunction_v *>(&func);
602 if (gradFunc) {
603 SetFunction(*gradFunc, true);
604 return;
605 } else {
606 MATH_WARN_MSG("Fitter::SetFunction",
607 "Requested function does not provide gradient - use it as non-gradient function ");
608 }
609 }
610
611 // set the fit model function (clone the given one and keep a copy )
612 // std::cout << "set a non-grad function" << std::endl;
613 fUseGradient = false;
614 fFunc_v = std::shared_ptr<IModelFunction_v>(dynamic_cast<IModelFunction_v *>(func.Clone()));
615 assert(fFunc_v);
616
617 // creates the parameter settings
619 fFunc.reset();
620}
621
622template <class NotCompileIfScalarBackend>
623void Fitter::SetFunction(const IGradModelFunction_v &func, bool useGradient)
624{
625 fUseGradient = useGradient;
626
627 // set the fit model function (clone the given one and keep a copy )
628 fFunc_v = std::shared_ptr<IModelFunction_v>(dynamic_cast<IGradModelFunction_v *>(func.Clone()));
629 assert(fFunc_v);
630
631 // creates the parameter settings
633 fFunc.reset();
634}
635#endif
636
637 } // end namespace Fit
638
639} // end namespace ROOT
640
641// implementation of inline methods
642
643
644#ifndef __CINT__
645
646#include "Math/WrappedFunction.h"
647
648template<class Function>
649bool ROOT::Fit::Fitter::FitFCN(unsigned int npar, Function & f, const double * par, unsigned int datasize,bool chi2fit) {
651 if (!DoSetFCN(false, wf, par, datasize, chi2fit))
652 return false;
653 return FitFCN();
654}
655template<class Function>
656bool ROOT::Fit::Fitter::SetFCN(unsigned int npar, Function & f, const double * par, unsigned int datasize,bool chi2fit) {
658 return DoSetFCN(false, wf, par, datasize, chi2fit);
659}
660
661
662
663
664#endif // endif __CINT__
665
666#endif /* ROOT_Fit_Fitter */
#define MATH_WARN_MSG(loc, str)
Definition Error.h:80
#define f(i)
Definition RSha256.hxx:104
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
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 result
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
Double_t(* Function)(Double_t)
Definition Functor.C:4
Class describing the binned data sets : vectors of x coordinates, y values and optionally error on y ...
Definition BinData.h:52
Class describing the configuration of the fit, options and parameter settings using the ROOT::Fit::Pa...
Definition FitConfig.h:47
void CreateParamsSettings(const ROOT::Math::IParamMultiFunctionTempl< T > &func)
set the parameter settings from a model function.
Definition FitConfig.h:109
class containing the result of the fit and all the related information (fitted parameter values,...
Definition FitResult.h:47
Fitter class, entry point for performing all type of fits.
Definition Fitter.h:77
bool LikelihoodFit(const std::shared_ptr< UnBinData > &data, bool extended=false, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Un-binned Likelihood fit using a shared_ptr for NOT copying the input data.
Definition Fitter.h:229
bool LinearFit(const BinData &data)
Do a linear fit copying the input data.
Definition Fitter.h:247
bool DoSetFCN(bool useExtFCN, const ROOT::Math::IMultiGenFunction &fcn, const double *params, unsigned int dataSize, bool chi2fit)
Set Objective function.
Definition Fitter.cxx:137
bool LeastSquareFit(const std::shared_ptr< BinData > &data, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit a binned data set using a least square fit NOT copying the input data.
Definition Fitter.h:179
bool EvalFCN()
Perform a simple FCN evaluation.
Definition Fitter.cxx:290
const ROOT::Math::IMultiGenFunction * fExtObjFunction
! pointer to an external FCN
Definition Fitter.h:575
Fitter & operator=(const Fitter &)=delete
Assignment operator (disabled, class is not copyable)
bool FitFCN()
Perform a fit with the previously set FCN function.
Definition Fitter.cxx:271
void DoUpdateFitConfig()
Definition Fitter.cxx:862
bool DoMinimization(std::unique_ptr< ObjFunc_t > f, const ROOT::Math::IMultiGenFunction *chifunc=nullptr)
do minimization
Definition Fitter.cxx:838
int fDataSize
size of data sets (need for Fumili or LM fitters)
Definition Fitter.h:559
bool DoUnbinnedLikelihoodFit(bool extended=false, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
un-binned likelihood fit
Definition Fitter.cxx:442
void SetData(const Data &data)
Set the input data for the fit (Copying the given data object)
Definition Fitter.h:525
const ROOT::Math::IBaseFunctionMultiDimTempl< double > * ObjFunction() const
Return pointer to the used objective function for fitting.
Definition Fitter.h:543
ROOT::Math::IParamMultiFunction IModelFunction_v
Definition Fitter.h:88
bool Fit(const BinData &data, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit a binned data set using a least square fit.
Definition Fitter.h:157
std::shared_ptr< ROOT::Math::Minimizer > fMinimizer
! pointer to used minimizer
Definition Fitter.h:569
bool DoWeightMinimization(std::unique_ptr< ObjFunc_t > f, const ROOT::Math::IMultiGenFunction *chifunc=nullptr)
Definition Fitter.cxx:847
bool LikelihoodFit(const Data &data, const Function &func, bool extended)
Likelihood fit given a data set (Binned or Un-binned) using any generic model function.
Definition Fitter.h:239
bool DoBinnedLikelihoodFit(bool extended=true, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
binned likelihood fit
Definition Fitter.cxx:362
int fFitType
type of fit (0 undefined, 1 least square, 2 likelihood, 3 binned likelihood)
Definition Fitter.h:557
ROOT::Math::IMultiGenFunction * GetFCN() const
return pointer to last used objective function (is NULL in case fit is not yet done) This pointer wil...
Definition Fitter.h:454
ROOT::Math::IParamGradFunction IGradModel1DFunction
Definition Fitter.h:93
std::shared_ptr< ROOT::Fit::FitData > fData
! pointer to the fit data (binned or unbinned data)
Definition Fitter.h:571
ROOT::Math::Minimizer * GetMinimizer() const
return pointer to last used minimizer (is NULL in case fit is not yet done) This pointer is guarantee...
Definition Fitter.h:443
ROOT::Math::IMultiGenFunction BaseFunc
Definition Fitter.h:95
FitConfig & Config()
access to the configuration (non const method)
Definition Fitter.h:426
bool fUseGradient
flag to indicate if using gradient or not
Definition Fitter.h:551
void SetNumberOfFitPoints(unsigned int npoints)
Set number of fit points when using an external FCN function This function can be called after Fit to...
Definition Fitter.h:471
bool fBinFit
flag to indicate if fit is binned in case of false the fit is unbinned or undefined) flag it is used ...
Definition Fitter.h:553
void(* MinuitFCN_t)(int &npar, double *gin, double &f, double *u, int flag)
fit using user provided FCN with Minuit-like interface If npar = 0 it is assumed that the parameters ...
Definition Fitter.h:338
bool IsBinFit() const
query if fit is binned.
Definition Fitter.h:432
bool LinearFit(const std::shared_ptr< BinData > &data)
Do a linear fit using a shared_ptr for NOT copying the input data.
Definition Fitter.h:254
std::shared_ptr< ROOT::Math::IMultiGenFunction > fObjFunction
! pointer to used objective function
Definition Fitter.h:573
void SetFitType(int type)
Set the type of fit when using an external FCN possible types are : 1 (least-square),...
Definition Fitter.h:480
virtual ~Fitter()
Destructor.
Definition Fitter.h:117
bool Fit(const std::shared_ptr< BinData > &data, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit a binned data set using a least square fit.
Definition Fitter.h:165
const FitResult & Result() const
get fit result
Definition Fitter.h:393
bool ApplyWeightCorrection(const ROOT::Math::IMultiGenFunction &loglw2, bool minimizeW2L=false)
apply correction in the error matrix for the weights for likelihood fits This method can be called on...
Definition Fitter.cxx:888
ROOT::Math::IMultiGradFunction BaseGradFunc
Definition Fitter.h:96
bool SetFCN(unsigned int npar, Function &fcn, const double *params=nullptr, unsigned int dataSize=0, bool chi2fit=false)
Set a generic FCN function as a C++ callable object implementing double () (const double *) Note that...
Definition Fitter.h:656
void ExamineFCN()
look at the user provided FCN and get data and model function is they derive from ROOT::Fit FCN class...
Definition Fitter.cxx:981
const FitConfig & Config() const
access to the fit configuration (const method)
Definition Fitter.h:421
void SetData(const std::shared_ptr< Data > &data)
Set the input data for the fit using a shared ptr (No Copying)
Definition Fitter.h:519
bool DoLeastSquareFit(const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
least square fit
Definition Fitter.cxx:311
ROOT::Math::IParamMultiFunction IModelFunction
Definition Fitter.h:81
ROOT::Math::IParamFunction IModel1DFunction
Definition Fitter.h:92
bool LikelihoodFit(const BinData &data, bool extended=true, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Binned Likelihood fit copying the input data.
Definition Fitter.h:203
std::shared_ptr< IModelFunction_v > fFunc_v
! copy of the fitted function containing on output the fit result
Definition Fitter.h:563
ROOT::Math::IParamMultiGradFunction IGradModelFunction_v
Definition Fitter.h:89
bool LikelihoodFit(const std::shared_ptr< BinData > &data, bool extended=true, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Binned Likelihood fit using a shared_ptr for NOT copying the input data.
Definition Fitter.h:212
std::shared_ptr< ROOT::Fit::FitResult > fResult
! pointer to the object containing the result of the fit
Definition Fitter.h:567
bool GetDataFromFCN()
internal functions to get data set and model function from FCN useful for fits done with customized F...
Definition Fitter.h:583
ROOT::Math::IParamMultiGradFunction IGradModelFunction
Definition Fitter.h:91
bool CalculateMinosErrors()
perform an error analysis on the result using MINOS To be called only after fitting and when a minimi...
Definition Fitter.cxx:595
Fitter(const Fitter &)=delete
Copy constructor (disabled, class is not copyable)
bool DoUpdateMinimizerOptions(bool canDifferentMinim=true)
Definition Fitter.cxx:765
bool Fit(const Data &data, const Function &func, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
fit a data set using any generic model function If data set is binned a least square fit is performed...
Definition Fitter.h:144
bool Fit(const UnBinData &data, bool extended=false, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit an un-binned data set using the negative log-likelihood method.
Definition Fitter.h:188
void SetFunction(const IModelFunction &func, bool useGradient=false)
Set the fitted function (model function) from a parametric function interface.
Definition Fitter.cxx:59
bool CalculateHessErrors()
perform an error analysis on the result using the Hessian Errors are obtained from the inverse of the...
Definition Fitter.cxx:532
FitConfig fConfig
fitter configuration (options and parameter settings)
Definition Fitter.h:561
Fitter()
Default constructor.
Definition Fitter.h:102
std::shared_ptr< IModelFunction > fFunc
! copy of the fitted function containing on output the fit result
Definition Fitter.h:565
bool SetFCN(const ROOT::Math::FitMethodGradFunction &fcn, const double *params=nullptr)
Set the objective function (FCN) using a FitMethodGradFunction interface.
bool LeastSquareFit(const BinData &data, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit a binned data set using a least square fit copying the input data.
Definition Fitter.h:172
bool FitFCN(const ROOT::Math::FitMethodGradFunction &fcn, const double *params=nullptr)
Fit using a FitMethodGradFunction interface.
bool Fit(const std::shared_ptr< UnBinData > &data, bool extended=false, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Fit an un-binned data set using the negative log-likelihood method.
Definition Fitter.h:195
bool LikelihoodFit(const UnBinData &data, bool extended=false, const ROOT::EExecutionPolicy &executionPolicy=ROOT::EExecutionPolicy::kSequential)
Un-binned Likelihood fit copying the input data Default is NOT extended.
Definition Fitter.h:221
bool DoLinearFit()
linear least square fit
Definition Fitter.cxx:515
bool DoInitMinimizer()
Definition Fitter.cxx:694
int GetNCallsFromFCN()
Definition Fitter.cxx:872
Class describing the un-binned data sets (just x coordinates values) of any dimensions.
Definition UnBinData.h:46
FitMethodFunction class Interface for objective functions (like chi2 and likelihood used in the fit) ...
Documentation for the abstract class IBaseFunctionMultiDim.
Definition IFunction.h:61
Interface (abstract class) for multi-dimensional functions providing a gradient calculation.
Definition IFunction.h:168
Specialized IParamFunction interface (abstract class) for one-dimensional parametric functions It is ...
Interface (abstract class) for parametric gradient multi-dimensional functions providing in addition ...
Interface (abstract class) for parametric one-dimensional gradient functions providing in addition to...
Abstract Minimizer class, defining the interface for the various minimizer (like Minuit2,...
Definition Minimizer.h:117
Template class to wrap any C++ callable object implementing operator() (const double * x) in a multi-...
RooCmdArg Minimizer(const char *type, const char *alg=nullptr)
Namespace for new Math classes and functions.
BasicFitMethodFunction< ROOT::Math::IMultiGenFunction > FitMethodFunction
Definition Fitter.h:43
BasicFitMethodFunction< ROOT::Math::IMultiGradFunction > FitMethodGradFunction
Definition Fitter.h:44
This file contains a specialised ROOT message handler to test for diagnostic in unit tests.