Class Reference for E1039 Core & Analysis Software
FitRTDist.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <TMath.h>
4 #include <TH2D.h>
5 #include <TSpline.h>
6 #include <TGraph.h>
7 #include <Math/Minimizer.h>
8 #include <Math/Factory.h>
9 #include <Math/Functor.h>
10 #include "RTCurve.h"
11 #include "FitRTDist.h"
12 using namespace std;
13 
14 int FitRTDist::m_n_pt = 0;
15 int FitRTDist::m_n_par = 0;
16 TH2* FitRTDist::m_h2_RT = 0;
17 double FitRTDist::m_t_min = 0;
18 double FitRTDist::m_t_max = 0;
19 double FitRTDist::m_r_max = 0;
20 
22  : m_fix_t1t0(false)
23  , m_t1(0)
24  , m_t0(0)
25  , m_verb(0)
26 {
27  ;
28 }
29 
31 {
32  //if (m_minuit) delete m_minuit;
33 }
34 
35 double FitRTDist::FCN(const double* xx)
36 {
37  double chi2;
38  int ndf;
39  CalcChi2(xx, chi2, ndf);
40  return chi2;
41 }
42 
52 void FitRTDist::CalcChi2(const double* pars, double& chi2, int& ndf)
53 {
54  RTCurve rtc(m_n_pt);
55  SetRTCurve(pars, &rtc);
56  double dr = rtc.GetRWidth();
57 
58  chi2 = 0;
59  ndf = 0;
60  double r_width = m_h2_RT->GetYaxis()->GetBinWidth(1);
61  int n_r = m_h2_RT->GetNbinsY();
62  for (int it = m_h2_RT->GetNbinsX(); it > 0; it--) {
63  double cont_t = m_h2_RT->Integral(it, it, 1, n_r);
64  if (cont_t < 10) continue;
65  double t_cent = m_h2_RT->GetXaxis()->GetBinCenter(it);
66  double r_func = rtc.EvalR(t_cent);
67  for (int ir = n_r; ir > 0; ir--) {
68  double cont = m_h2_RT->GetBinContent(it, ir);
69  if (cont <= 0) continue;
70  double r_cent = m_h2_RT->GetYaxis()->GetBinCenter(ir);
71  double cont_func = cont_t * r_width * exp( -pow( (r_cent-r_func)/dr, 2 )/2 ) / (sqrt(2*TMath::Pi()) * dr);
72  double chi2p = pow(cont - cont_func, 2) / cont;
73  //cout << "XXX " << it << " " << ir << " : " << dr << " " << cont_t << " " << cont_func << " " << cont << " " << chi2p << endl;
74  chi2 += chi2p;
75  ndf++;
76  }
77  }
78  ndf -= m_n_par;
79 }
80 
81 void FitRTDist::FixT1T0(const double t1, const double t0)
82 {
83  m_fix_t1t0 = true;
84  m_t1 = t1;
85  m_t0 = t0;
86 }
87 
88 int FitRTDist::DoFit(const int n_pt, TH2* h2, double r_max, TGraph* gr_init, RTCurve* rtc)
89 {
90  const double DR = 0.04;
91  m_n_pt = n_pt;
92  m_h2_RT = h2;
93  m_r_max = r_max;
94  m_t_min = h2->GetXaxis()->GetXmin();
95  m_t_max = h2->GetXaxis()->GetXmax();
96 
97  ROOT::Math::Minimizer* m_mini = ROOT::Math::Factory::CreateMinimizer("Minuit2", "Migrad");
98  m_mini->SetMaxFunctionCalls(1000000);
99  m_mini->SetTolerance(0.001);
100  m_mini->SetPrintLevel(m_verb > 0 ? m_verb - 1 : 0);
101 
102  double t1, t0;
103  if (m_fix_t1t0) {
104  t1 = m_t1;
105  t0 = m_t0;
106  m_mini->SetFixedVariable(0, "T1", t1);
107  m_mini->SetFixedVariable(1, "T1", t0);
108  } else {
109  t1 = gr_init->GetX()[0];
110  t0 = gr_init->GetX()[gr_init->GetN()-1];
111  m_mini->SetLimitedVariable(0, "T1", t1, 0.1, m_t_min, m_t_max);
112  m_mini->SetLimitedVariable(1, "T0", t0, 0.1, m_t_min, m_t_max);
113  }
114  m_mini->SetLimitedVariable(2, "DR", DR, 0.01, 0, 1);
115  if (m_verb > 0) cout << " T: " << t1 << " " << t0 << " " << DR << endl;
116 
117  ostringstream oss;
118 
119  for (int i_pt = 1; i_pt < m_n_pt - 1; i_pt++) {
120  double t = t1 + (t0 - t1) * (i_pt + 1) / m_n_pt;
121  double r = gr_init->Eval(t);
122  oss.str(""); oss << "R" << i_pt+1;
123  double r_lo = r - 3 * DR; // 3 sigma at max
124  double r_hi = r + 3 * DR; // 3 sigma at max
125  if (r_lo < 0 ) r_lo = 0;
126  if (r_hi > r_max) r_hi = r_max;
127  m_mini->SetLimitedVariable(i_pt+2, oss.str().c_str(), r, 0.001, r_lo, r_hi);
128  if (m_verb > 0) cout << " " << i_pt+1 << ": " << t << " --- " << r_lo << " < " << r << " < " << r_hi << "\n";
129  }
130 
131  m_n_par = m_mini->NFree();
132  if (m_verb > 0) cout << " N_par " << m_n_par << "\n";
133 
134  ROOT::Math::Functor functor(&FitRTDist::FCN, m_n_par);
135  m_mini->SetFunction(functor);
136 
137  bool mini_result = m_mini->Minimize();
138  if (! mini_result) {
139  cerr << " WARNING: Bad fit result (ret = " << mini_result << "). Please inspect it." << endl;
140  //<< "Please fix the problem. Abort" << endl;
141  //exit(1);
142  }
143 
144  if (m_verb > 1) {
145  double min_value = m_mini->MinValue();
146  cout << " MinValue = " << min_value << "\n";
147  }
148  const double* list_val = m_mini->X();
149  const double* list_err = m_mini->Errors();
150  //double c_ij = m_mini->CovMatrix(i, j);
151 
152  if (m_verb > 1) {
153  cout << " T: " << list_val[0] << " " << list_val[1] << " " << list_val[2] << "\n";
154  for (int i_pt = 1; i_pt < m_n_pt - 1; i_pt++) {
155  cout << " " << i_pt+1 << ": " << list_val[i_pt + 2] << "\n";
156  }
157  }
158 
159  double chi2;
160  int ndf ;
161  CalcChi2(list_val, chi2, ndf);
162  cout << " chi2 / ndf = " << chi2 << " / " << ndf << " = " << chi2/ndf << endl;
163 
164  SetRTCurve(list_val, rtc);
165 
166  delete m_mini;
167  return 0;
168 }
169 
170 void FitRTDist::SetRTCurve(const double* pars, RTCurve* rtc)
171 {
172  double t1 = pars[0];
173  double t0 = pars[1];
174  rtc->SetRWidth(pars[2]);
175  rtc->SetPoint(0, m_r_max, t1);
176  for (int i_pt = 1; i_pt < m_n_pt - 1; i_pt++) {
177  double t = t1 + (t0 - t1) * (i_pt + 1) / m_n_pt;
178  rtc->SetPoint(i_pt, pars[i_pt+2], t);
179  }
180  rtc->SetPoint(m_n_pt-1, 0, t0);
181 }
bool m_fix_t1t0
Definition: FitRTDist.h:11
static double m_r_max
Definition: FitRTDist.h:20
double m_t1
Fixed T1 value. Valid only when m_fix_t1t0 = true.
Definition: FitRTDist.h:12
static TH2 * m_h2_RT
Definition: FitRTDist.h:17
static double FCN(const double *xx)
Definition: FitRTDist.cc:35
double m_t0
Fixed T0 value. Valid only when m_fix_t1t0 = true.
Definition: FitRTDist.h:13
int m_verb
Definition: FitRTDist.h:22
static double m_t_min
Definition: FitRTDist.h:18
static void CalcChi2(const double *pars, double &chi2, int &ndf)
Definition: FitRTDist.cc:52
static double m_t_max
Definition: FitRTDist.h:19
static int m_n_pt
N of R-T points.
Definition: FitRTDist.h:15
virtual ~FitRTDist()
Definition: FitRTDist.cc:30
int DoFit(const int n_pt, TH2 *h2, double r_max, TGraph *gr_init, RTCurve *rtc)
Definition: FitRTDist.cc:88
static int m_n_par
N of free parameters.
Definition: FitRTDist.h:16
void FixT1T0(const double t1, const double t0)
Definition: FitRTDist.cc:81
Class to represent R-T curve.
Definition: RTCurve.h:7
double GetRWidth() const
Definition: RTCurve.cc:48
double EvalR(const double t)
Definition: RTCurve.cc:53
void SetPoint(const int i_pt, const double r, const double t)
Definition: RTCurve.cc:27
void SetRWidth(const double dr)
Definition: RTCurve.cc:42