7 #include <Math/Minimizer.h>
8 #include <Math/Factory.h>
9 #include <Math/Functor.h>
55 SetRTCurve(pars, &rtc);
60 double r_width =
m_h2_RT->GetYaxis()->GetBinWidth(1);
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;
90 const double DR = 0.04;
94 m_t_min = h2->GetXaxis()->GetXmin();
95 m_t_max = h2->GetXaxis()->GetXmax();
97 ROOT::Math::Minimizer* m_mini = ROOT::Math::Factory::CreateMinimizer(
"Minuit2",
"Migrad");
98 m_mini->SetMaxFunctionCalls(1000000);
99 m_mini->SetTolerance(0.001);
106 m_mini->SetFixedVariable(0,
"T1", t1);
107 m_mini->SetFixedVariable(1,
"T1", t0);
109 t1 = gr_init->GetX()[0];
110 t0 = gr_init->GetX()[gr_init->GetN()-1];
114 m_mini->SetLimitedVariable(2,
"DR", DR, 0.01, 0, 1);
115 if (
m_verb > 0) cout <<
" T: " << t1 <<
" " << t0 <<
" " << DR << endl;
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;
124 double r_hi = r + 3 * DR;
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";
135 m_mini->SetFunction(functor);
137 bool mini_result = m_mini->Minimize();
139 cerr <<
" WARNING: Bad fit result (ret = " << mini_result <<
"). Please inspect it." << endl;
145 double min_value = m_mini->MinValue();
146 cout <<
" MinValue = " << min_value <<
"\n";
148 const double* list_val = m_mini->X();
149 const double* list_err = m_mini->Errors();
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";
162 cout <<
" chi2 / ndf = " << chi2 <<
" / " << ndf <<
" = " << chi2/ndf << endl;
164 SetRTCurve(list_val, rtc);
170 void FitRTDist::SetRTCurve(
const double* pars,
RTCurve* rtc)
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);
double m_t1
Fixed T1 value. Valid only when m_fix_t1t0 = true.
static double FCN(const double *xx)
double m_t0
Fixed T0 value. Valid only when m_fix_t1t0 = true.
static void CalcChi2(const double *pars, double &chi2, int &ndf)
static int m_n_pt
N of R-T points.
int DoFit(const int n_pt, TH2 *h2, double r_max, TGraph *gr_init, RTCurve *rtc)
static int m_n_par
N of free parameters.
void FixT1T0(const double t1, const double t0)
Class to represent R-T curve.
double EvalR(const double t)
void SetPoint(const int i_pt, const double r, const double t)
void SetRWidth(const double dr)