CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTResidualFitter.cc
Go to the documentation of this file.
1 
2 /*
3  * Fits core distribution to single gaussian; iterates once.
4  *
5  * \author A. Vilela Pereira
6  */
7 
9 
10 #include "TH1F.h"
11 #include "TF1.h"
12 #include "TString.h"
13 
15 
17 
19 
20  TString option("R");
21  if(!debug_) option += "Q";
22 
23  float minFit = histo.GetMean() - histo.GetRMS();
24  float maxFit = histo.GetMean() + histo.GetRMS();
25 
26  TString funcName = TString(histo.GetName()) + "_gaus";
27  TF1* fitFunc = new TF1(funcName,"gaus",minFit,maxFit);
28 
29  histo.Fit(fitFunc,option);
30 
31  minFit = fitFunc->GetParameter(1) - nSigmas*fitFunc->GetParameter(2);
32  maxFit = fitFunc->GetParameter(1) + nSigmas*fitFunc->GetParameter(2);
33  fitFunc->SetRange(minFit,maxFit);
34  histo.Fit(fitFunc,option);
35 
36  return DTResidualFitResult( fitFunc->GetParameter(1),
37  fitFunc->GetParError(1),
38  fitFunc->GetParameter(2),
39  fitFunc->GetParError(2) );
40 }
DTResidualFitResult fitResiduals(TH1F &histo, int nSigmas=1)
#define debug
Definition: HDRShower.cc:19
DTResidualFitter(bool debug=false)