Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
Chi2FCN.h
Go to the documentation of this file.
1 // @(#)root/mathcore:$Id$
2 // Author: L. Moneta Tue Sep 5 09:13:32 2006
3 
4 /**********************************************************************
5  * *
6  * Copyright (c) 2006 LCG ROOT Math Team, CERN/PH-SFT *
7  * *
8  * *
9  **********************************************************************/
10 
11 // Header file for class Chi2FCN
12 
13 #ifndef ROOT_Fit_Chi2FCN
14 #define ROOT_Fit_Chi2FCN
15 
16 #include "Fit/BasicFCN.h"
17 
18 #include "Math/IParamFunction.h"
19 
20 #include "Math/IFunction.h"
21 #include "Math/IFunctionfwd.h"
22 
23 #include "Fit/BinData.h"
24 
25 
26 #include "Fit/FitUtil.h"
27 
28 #include <memory>
29 
30 /**
31 @defgroup FitMethodFunc Fit Method Classes
32 
33 Classes describing Fit Method functions
34 @ingroup Fit
35 */
36 
37 namespace ROOT {
38 
39 
40  namespace Fit {
41 
42 //___________________________________________________________________________________
43 /**
44  Chi2FCN class for binnned fits using the least square methods
45 
46  @ingroup FitMethodFunc
47 */
48 template<class DerivFunType, class ModelFunType = ROOT::Math::IParamMultiFunction>
49 class Chi2FCN : public BasicFCN<DerivFunType, ModelFunType, BinData> {
50 
51 public:
52 
53  typedef typename ModelFunType::BackendType T;
54  typedef BasicFCN<DerivFunType, ModelFunType, BinData> BaseFCN;
55 
56  typedef ::ROOT::Math::BasicFitMethodFunction<DerivFunType> BaseObjFunction;
57  typedef typename BaseObjFunction::BaseFunction BaseFunction;
58 
59  //typedef typename ::ROOT::Math::ParamFunctionTrait<FunType>::PFType IModelFunction;
60  typedef ::ROOT::Math::IParamMultiFunctionTempl<T> IModelFunction;
61  typedef typename BaseObjFunction::Type_t Type_t;
62 
63  /**
64  Constructor from data set (binned ) and model function
65  */
66  Chi2FCN (const std::shared_ptr<BinData> & data, const std::shared_ptr<IModelFunction> & func, const ::ROOT::Fit::ExecutionPolicy &executionPolicy = ::ROOT::Fit::ExecutionPolicy::kSerial) :
67  BaseFCN( data, func),
68  fNEffPoints(0),
69  fGrad ( std::vector<double> ( func->NPar() ) ),
70  fExecutionPolicy(executionPolicy)
71  { }
72 
73  /**
74  Same Constructor from data set (binned ) and model function but now managed by the user
75  we clone the function but not the data
76  */
77  Chi2FCN ( const BinData & data, const IModelFunction & func, const ::ROOT::Fit::ExecutionPolicy &executionPolicy = ::ROOT::Fit::ExecutionPolicy::kSerial) :
78  BaseFCN(std::shared_ptr<BinData>(const_cast<BinData*>(&data), DummyDeleter<BinData>()), std::shared_ptr<IModelFunction>(dynamic_cast<IModelFunction*>(func.Clone() ) ) ),
79  fNEffPoints(0),
80  fGrad ( std::vector<double> ( func.NPar() ) ),
81  fExecutionPolicy(executionPolicy)
82  { }
83 
84  /**
85  Destructor (no operations)
86  */
87  virtual ~Chi2FCN () {}
88  /**
89  Copy constructor
90  */
91  Chi2FCN(const Chi2FCN & f) :
92  BaseFCN(f.DataPtr(), f.ModelFunctionPtr() ),
93  fNEffPoints( f.fNEffPoints ),
94  fGrad( f.fGrad),
95  fExecutionPolicy(f.fExecutionPolicy)
96  { }
97 
98  /**
99  Assignment operator
100  */
101  Chi2FCN & operator = (const Chi2FCN & rhs) {
102  SetData(rhs.DataPtr() );
103  SetModelFunction(rhs.ModelFunctionPtr() );
104  fNEffPoints = rhs.fNEffPoints;
105  fGrad = rhs.fGrad;
106  }
107 
108  /*
109  clone the function
110  */
111  virtual BaseFunction * Clone() const {
112  return new Chi2FCN(*this);
113  }
114 
115 
116 
117  using BaseObjFunction::operator();
118 
119 
120  /// i-th chi-square residual
121  virtual double DataElement(const double *x, unsigned int i, double *g) const {
122  if (i==0) this->UpdateNCalls();
123  return FitUtil::Evaluate<T>::EvalChi2Residual(BaseFCN::ModelFunction(), BaseFCN::Data(), x, i, g);
124  }
125 
126  // need to be virtual to be instantiated
127  virtual void Gradient(const double *x, double *g) const {
128  // evaluate the chi2 gradient
129  FitUtil::Evaluate<T>::EvalChi2Gradient(BaseFCN::ModelFunction(), BaseFCN::Data(), x, g, fNEffPoints,
130  fExecutionPolicy);
131  }
132 
133  /// get type of fit method function
134  virtual typename BaseObjFunction::Type_t Type() const { return BaseObjFunction::kLeastSquare; }
135 
136 
137 protected:
138 
139  /// set number of fit points (need to be called in const methods, make it const)
140  virtual void SetNFitPoints(unsigned int n) const { fNEffPoints = n; }
141 
142 private:
143 
144  /**
145  Evaluation of the function (required by interface)
146  */
147  virtual double DoEval (const double * x) const {
148  this->UpdateNCalls();
149  if (BaseFCN::Data().HaveCoordErrors() || BaseFCN::Data().HaveAsymErrors())
150  return FitUtil::Evaluate<T>::EvalChi2Effective(BaseFCN::ModelFunction(), BaseFCN::Data(), x, fNEffPoints);
151  else
152  return FitUtil::Evaluate<T>::EvalChi2(BaseFCN::ModelFunction(), BaseFCN::Data(), x, fNEffPoints, fExecutionPolicy);
153  }
154 
155  // for derivatives
156  virtual double DoDerivative(const double * x, unsigned int icoord ) const {
157  Gradient(x, fGrad.data());
158  return fGrad[icoord];
159  }
160 
161 
162  mutable unsigned int fNEffPoints; // number of effective points used in the fit
163 
164  mutable std::vector<double> fGrad; // for derivatives
165  ::ROOT::Fit::ExecutionPolicy fExecutionPolicy;
166 
167 };
168 
169  // define useful typedef's
170  typedef Chi2FCN<ROOT::Math::IMultiGenFunction,ROOT::Math::IParamMultiFunction> Chi2Function;
171  typedef Chi2FCN<ROOT::Math::IMultiGradFunction, ROOT::Math::IParamMultiFunction> Chi2GradFunction;
172 
173 
174  } // end namespace Fit
175 
176 } // end namespace ROOT
177 
178 
179 #endif /* ROOT_Fit_Chi2FCN */