12 |
#include "TGraphAsymmErrors.h" |
#include "TGraphAsymmErrors.h" |
13 |
|
|
14 |
extern "C" { |
extern "C" { |
15 |
bool efficiency_(Int_t*, Int_t*, Double_t*, Double_t*, Double_t*); |
/*! @brief Fortran routine by Sergio Ricciarini which computes errors on the efficiency. |
16 |
|
* |
17 |
|
* This routine has been developed to carefully evaluate the error bars on the efficiency, |
18 |
|
* which must have a value between 0 and 1. See the appendix of Sergio's PhD thesis for more |
19 |
|
* details. |
20 |
|
* The important thing is that the computed efficiency will have the unphysical value 1.1 |
21 |
|
* if there are less than 8 events in the efficiency sample (eg., the sample used to compute the |
22 |
|
* efficiency). This is necessary to have a reliable estimate of the errors. |
23 |
|
* |
24 |
|
* @param sel Pointer to an Int_t variable containing the number of events in the efficiency sample. |
25 |
|
* @param det Pointer to an Int_t variable containing the number of events in the efficiency sample |
26 |
|
* which satisfied the set of cuts for which the efficiency is being measured. |
27 |
|
* @param eff Pointer to a Double_t variable where the computed efficiency will be returned. |
28 |
|
* @param errLow Pointer to a Double_t variable where the length of the lower error bar will |
29 |
|
* be returned. |
30 |
|
* @param errHigh Pointer to a Double_t variable where the length of the upper error bar will |
31 |
|
* be returned. |
32 |
|
* @return Not clear at this point... ignore it. |
33 |
|
*/ |
34 |
|
bool efficiency_(Int_t* sel, Int_t* det, Double_t* eff, Double_t* errLow, Double_t* errHigh); |
35 |
} |
} |
36 |
|
|
37 |
EffRigCollection::EffRigCollection(const char *collectionName, TString outFileBase, TString rigBinsFile, int errMethod) : |
EffRigCollection::EffRigCollection(const char *collectionName, TString outFileBase, TString rigBinsFile, int errMethod, bool owns) : |
38 |
EffCollection(collectionName, outFileBase, errMethod), _bins(0), _selVector(0), _detVector(0), _outUp(0), _outDown(0) { |
EffCollection(collectionName, outFileBase, errMethod, owns), _bins(0), _selVector(0), _detVector(0), _outUp(0), _outDown(0) { |
39 |
|
|
40 |
ifstream rigBinListFile; |
ifstream rigBinListFile; |
41 |
rigBinListFile.open(rigBinsFile); |
rigBinListFile.open(rigBinsFile); |
117 |
errGraph.SetMarkerStyle(7); |
errGraph.SetMarkerStyle(7); |
118 |
errGraph.GetYaxis()->SetRangeUser(0, 1.2); |
errGraph.GetYaxis()->SetRangeUser(0, 1.2); |
119 |
|
|
120 |
if (_errMethod == EFFRIG_ROOT) { |
|
121 |
|
if (_errMethod == EFFERR_ROOT) { |
122 |
double binning[_bins.size()]; |
double binning[_bins.size()]; |
123 |
for (unsigned int i = 0; i < _bins.size(); i++) |
for (unsigned int i = 0; i < _bins.size(); i++) |
124 |
binning[i] = _bins[i]; |
binning[i] = _bins[i]; |
126 |
TH1I pass("pass", "pass", _bins.size() - 1, binning); |
TH1I pass("pass", "pass", _bins.size() - 1, binning); |
127 |
TH1I total("total", "total", _bins.size() - 1, binning); |
TH1I total("total", "total", _bins.size() - 1, binning); |
128 |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
|
cout << (binning[i + 1] + binning[i]) / 2. << " " << det[i] << " " << sel[i] << endl; |
|
129 |
for (int j = 0; j < det[i]; j++) |
for (int j = 0; j < det[i]; j++) |
130 |
pass.Fill((binning[i + 1] + binning[i]) / 2.); |
pass.Fill((binning[i + 1] + binning[i]) / 2.); |
131 |
for (int j = 0; j < sel[i]; j++) |
for (int j = 0; j < sel[i]; j++) |
136 |
Double_t graphX; |
Double_t graphX; |
137 |
double currBin; |
double currBin; |
138 |
int currPoint = 0; |
int currPoint = 0; |
139 |
//cout << errGraph.GetN() << " " << pass.GetNbinsX() << " " << total.GetNbinsX() << endl; |
|
140 |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
141 |
errGraph.GetPoint(currPoint, graphX, eff[i]); |
errGraph.GetPoint(currPoint, graphX, eff[i]); |
142 |
currBin = (binning[i + 1] + binning[i]) / 2.; |
currBin = (binning[i + 1] + binning[i]) / 2.; |
153 |
} |
} |
154 |
|
|
155 |
} |
} |
156 |
if (_errMethod == EFFRIG_SERGIO) { |
if (_errMethod == EFFERR_SERGIO) { |
157 |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
158 |
efficiency_(&(sel[i]), &(det[i]), &(eff[i]), &(errLow[i]), &(errHigh[i])); |
efficiency_(&(sel[i]), &(det[i]), &(eff[i]), &(errLow[i]), &(errHigh[i])); |
159 |
|
|
160 |
|
float R = (_bins[i] + _bins[i + 1]) / 2.; |
161 |
|
float halfBin = (_bins[i + 1] - _bins[i]) / 2.; |
162 |
|
errGraph.SetPoint(i, R, eff[i]); |
163 |
|
errGraph.SetPointError(i, halfBin, halfBin, errLow[i], errHigh[i]); |
164 |
|
|
165 |
} |
} |
166 |
|
|
167 |
} |
} |
168 |
|
|
169 |
// Write the output files |
// Write the output files |
170 |
if (_outFileBase != "") { |
if (_outFileBase != "") { |
171 |
ofstream outTextFile((_outFileBase + "-eff-rig.txt").Data(), ios_base::out); |
ofstream outTextFile((_outFileBase + "-" + GetName() + "-rig.txt").Data(), ios_base::out); |
172 |
streamsize newPrec = 4; |
streamsize newPrec = 4; |
173 |
outTextFile.precision(newPrec); |
outTextFile.precision(newPrec); |
174 |
outTextFile.setf(ios::fixed, ios::floatfield); |
outTextFile.setf(ios::fixed, ios::floatfield); |
175 |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
for (unsigned int i = 0; i < _selVector.size(); i++) { |
176 |
outTextFile << setw(10) << _detVector[i] << setw(10) << _selVector[i]; |
outTextFile << setw(10) << _bins[i] << setw(10) << _bins[i + 1] << setw(10) << _detVector[i] << setw(10) |
177 |
|
<< _selVector[i]; |
178 |
if (_selVector[i] != 0) |
if (_selVector[i] != 0) |
179 |
outTextFile << setw(10) << eff[i] << setw(10) << errLow[i] << setw(10) << errHigh[i] << "\n"; |
outTextFile << setw(10) << eff[i] << setw(10) << errLow[i] << setw(10) << errHigh[i] << "\n"; |
180 |
else |
else |
181 |
outTextFile << setw(10) << 0. << setw(10) << 0. << setw(10) << 0. << endl; |
outTextFile << setw(10) << 0. << setw(10) << 0. << setw(10) << 0.; |
182 |
|
if (i < _selVector.size() - 1) //Avoids to print an empty line at the end of the file |
183 |
|
outTextFile << endl; |
184 |
|
|
185 |
} |
} |
186 |
|
|
187 |
outTextFile.close(); |
outTextFile.close(); |
188 |
if (_errMethod == EFFRIG_ROOT) { |
|
189 |
TFile outRootFile((_outFileBase + "-eff-rig.root"), "RECREATE"); |
TFile outRootFile((_outFileBase + "-" + GetName() + "-rig.root"), "RECREATE"); |
190 |
outRootFile.cd(); |
outRootFile.cd(); |
191 |
errGraph.Write(); |
errGraph.Write(); |
192 |
outRootFile.Close(); |
outRootFile.Close(); |
193 |
} |
|
194 |
} |
} |
195 |
|
|
196 |
} |
} |