1 |
buchmann |
1.1 |
#include <iostream>
|
2 |
|
|
#include <vector>
|
3 |
|
|
#include <sys/stat.h>
|
4 |
buchmann |
1.22 |
#include <math.h>
|
5 |
buchmann |
1.1 |
|
6 |
|
|
#include <TCut.h>
|
7 |
|
|
#include <TROOT.h>
|
8 |
|
|
#include <TCanvas.h>
|
9 |
|
|
#include <TMath.h>
|
10 |
|
|
#include <TColor.h>
|
11 |
|
|
#include <TPaveText.h>
|
12 |
|
|
#include <TRandom.h>
|
13 |
|
|
#include <TH1.h>
|
14 |
|
|
#include <TH2.h>
|
15 |
|
|
#include <TF1.h>
|
16 |
|
|
#include <TSQLResult.h>
|
17 |
|
|
#include <TProfile.h>
|
18 |
|
|
#include <TLegendEntry.h>
|
19 |
|
|
|
20 |
buchmann |
1.25 |
#include <RooRealVar.h>
|
21 |
|
|
#include <RooArgSet.h>
|
22 |
|
|
#include <RooDataSet.h>
|
23 |
|
|
#include <RooDataHist.h>
|
24 |
|
|
#include <RooMCStudy.h>
|
25 |
|
|
#include <RooCategory.h>
|
26 |
|
|
|
27 |
|
|
#include <RooPlot.h>
|
28 |
|
|
#include <RooSimultaneous.h>
|
29 |
|
|
#include <RooAddPdf.h>
|
30 |
|
|
#include <RooFitResult.h>
|
31 |
|
|
#include <RooVoigtian.h>
|
32 |
|
|
#include <RooChebychev.h>
|
33 |
|
|
#include <RooMsgService.h>
|
34 |
|
|
|
35 |
|
|
#include <RooStats/ModelConfig.h>
|
36 |
|
|
#include "RooStats/ProfileLikelihoodCalculator.h"
|
37 |
|
|
#include "RooStats/LikelihoodInterval.h"
|
38 |
|
|
#include "RooStats/HypoTestResult.h"
|
39 |
|
|
#include "RooStats/SimpleLikelihoodRatioTestStat.h"
|
40 |
|
|
#include "RooStats/ProfileLikelihoodTestStat.h"
|
41 |
|
|
#include "RooStats/HybridCalculatorOriginal.h"
|
42 |
|
|
#include "RooStats/HypoTestInverterOriginal.h"
|
43 |
|
|
|
44 |
buchmann |
1.26 |
|
45 |
|
|
|
46 |
buchmann |
1.1 |
using namespace std;
|
47 |
|
|
|
48 |
|
|
using namespace PlottingSetup;
|
49 |
|
|
|
50 |
|
|
namespace ZbData {
|
51 |
buchmann |
1.10 |
TCut ZplusBsel("pt1>20&&pt2>20&&mll>60&&mll<120&&id1==id2");
|
52 |
buchmann |
1.19 |
TCut LeadingB("ZbCHS3010_bTagProbCSVBP[0]>0.898");
|
53 |
|
|
TCut EtaB("abs(ZbCHS3010_pfJetGoodEta[0])<1.3");
|
54 |
|
|
TCut PhiZcut("abs(ZbCHS3010_pfJetDphiZ[0])>2.7");
|
55 |
buchmann |
1.26 |
float LowerHistoBoundary=0.5; // where to cut on MPF (or Rabs)
|
56 |
|
|
float UpperHistoBoundary=1.5; // where to cut on MPF (or Rabs)
|
57 |
|
|
|
58 |
buchmann |
1.1 |
}
|
59 |
|
|
|
60 |
buchmann |
1.19 |
TCut STDWEIGHT;
|
61 |
|
|
|
62 |
buchmann |
1.15 |
class ZbPointResult {
|
63 |
|
|
public:
|
64 |
|
|
ZbPointResult(string var, float ptlow, float pthigh, float alphalow, float alphahigh, Value Data, Value MC);
|
65 |
|
|
float PtLow;
|
66 |
|
|
float PtHigh;
|
67 |
|
|
float AlphaLow;
|
68 |
|
|
float AlphaHigh;
|
69 |
|
|
string variable;
|
70 |
|
|
Value Data;
|
71 |
|
|
Value MC;
|
72 |
|
|
Value Ratio;
|
73 |
|
|
};
|
74 |
|
|
|
75 |
|
|
ZbPointResult::ZbPointResult(string var, float ptlow, float pthigh, float alphalow, float alphahigh, Value data, Value mc) :
|
76 |
|
|
variable(var), PtLow(ptlow), PtHigh(pthigh), AlphaLow(alphalow), AlphaHigh(alphahigh), Data(data), MC(mc) {
|
77 |
|
|
Ratio = data/mc;
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
std::ostream &operator<<(std::ostream &ostr, ZbPointResult &b)
|
81 |
|
|
{
|
82 |
|
|
ostr << b.PtLow << ";" << b.PtHigh << ";" << b.AlphaLow << ";" << b.AlphaHigh << ";" << b.Data.getValue() << ";" << b.Data.getError() << ";" << b.MC.getValue() << ";" << b.MC.getError() << ";" << b.Ratio.getValue() << ";" << b.Ratio.getError();
|
83 |
|
|
return ostr;
|
84 |
|
|
}
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
class ZbResultContainer {
|
88 |
|
|
public:
|
89 |
|
|
string name;
|
90 |
|
|
vector<ZbPointResult> MPF_Rabs_location;
|
91 |
buchmann |
1.28 |
|
92 |
buchmann |
1.15 |
Value MPF_Result_FaceValue;
|
93 |
|
|
Value Rabs_Result_FaceValue;
|
94 |
|
|
Value MPF_Result_Extrapolated;
|
95 |
|
|
Value Rabs_Result_Extrapolated;
|
96 |
buchmann |
1.28 |
|
97 |
|
|
vector<Value> MPF_Result_FaceValue_Bins;
|
98 |
|
|
vector<Value> Rabs_Result_FaceValue_Bins;
|
99 |
|
|
vector<Value> MPF_Result_Extrapolated_Bins;
|
100 |
|
|
vector<Value> Rabs_Result_Extrapolated_Bins;
|
101 |
|
|
|
102 |
buchmann |
1.26 |
void Print();
|
103 |
buchmann |
1.15 |
|
104 |
|
|
ZbResultContainer(string name);
|
105 |
|
|
};
|
106 |
|
|
|
107 |
|
|
|
108 |
|
|
ZbResultContainer::ZbResultContainer(string _name) {
|
109 |
|
|
name=_name;
|
110 |
buchmann |
1.26 |
dout<< "Result Container for \"" << name << "\" has been initialized" << endl;
|
111 |
buchmann |
1.15 |
}
|
112 |
|
|
|
113 |
buchmann |
1.26 |
void ZbResultContainer::Print()
|
114 |
buchmann |
1.15 |
{
|
115 |
buchmann |
1.26 |
dout << "Results for " << this->name << endl;
|
116 |
|
|
dout << " MPF and Rabs locations: " << endl;
|
117 |
|
|
for(int i=0;i<this->MPF_Rabs_location.size();i++) dout << " " << this->MPF_Rabs_location[i] << endl;
|
118 |
|
|
dout << " Results: " << endl;
|
119 |
|
|
dout << " Face Value: " << endl;
|
120 |
|
|
dout << " MPF " << this->MPF_Result_FaceValue << endl;
|
121 |
buchmann |
1.28 |
dout << " Bins: [ ";
|
122 |
|
|
if(MPF_Result_FaceValue_Bins.size()>0) {
|
123 |
|
|
for(int i=0;i<MPF_Result_FaceValue_Bins.size()-1;i++) dout << MPF_Result_FaceValue_Bins[i] << " , ";
|
124 |
|
|
if(MPF_Result_FaceValue_Bins.size()>0) dout << MPF_Result_FaceValue_Bins[MPF_Result_FaceValue_Bins.size()-1] << " ]" << endl;
|
125 |
|
|
}
|
126 |
|
|
|
127 |
buchmann |
1.26 |
dout << " Rabs " << this->Rabs_Result_FaceValue << endl;
|
128 |
buchmann |
1.28 |
if(Rabs_Result_FaceValue_Bins.size()>0) {
|
129 |
|
|
dout << " Bins: [ ";
|
130 |
|
|
for(int i=0;i<Rabs_Result_FaceValue_Bins.size()-1;i++) dout << Rabs_Result_FaceValue_Bins[i] << " , ";
|
131 |
|
|
if(Rabs_Result_FaceValue_Bins.size()>0) dout << Rabs_Result_FaceValue_Bins[Rabs_Result_FaceValue_Bins.size()-1] << " ]" << endl;
|
132 |
|
|
}
|
133 |
|
|
|
134 |
buchmann |
1.26 |
dout << " Extrapolated: " << endl;
|
135 |
|
|
dout << " MPF " << this->MPF_Result_Extrapolated << endl;
|
136 |
buchmann |
1.28 |
if(MPF_Result_Extrapolated_Bins.size()>0) {
|
137 |
|
|
dout << " Bins: [ ";
|
138 |
|
|
for(int i=0;i<MPF_Result_Extrapolated_Bins.size()-1;i++) dout << MPF_Result_Extrapolated_Bins[i] << " , ";
|
139 |
|
|
if(MPF_Result_Extrapolated_Bins.size()>0) dout << MPF_Result_Extrapolated_Bins[MPF_Result_Extrapolated_Bins.size()-1] << " ]" << endl;
|
140 |
|
|
}
|
141 |
|
|
|
142 |
buchmann |
1.26 |
dout << " Rabs " << this->Rabs_Result_Extrapolated << endl;
|
143 |
buchmann |
1.28 |
if(Rabs_Result_Extrapolated_Bins.size()>0) {
|
144 |
|
|
dout << " Bins: [ ";
|
145 |
|
|
for(int i=0;i<Rabs_Result_Extrapolated_Bins.size()-1;i++) dout << Rabs_Result_Extrapolated_Bins[i] << " , ";
|
146 |
|
|
if(Rabs_Result_Extrapolated_Bins.size()>0) dout << Rabs_Result_Extrapolated_Bins[Rabs_Result_Extrapolated_Bins.size()-1] << " ]" << endl;
|
147 |
|
|
}
|
148 |
buchmann |
1.15 |
}
|
149 |
|
|
|
150 |
|
|
|
151 |
buchmann |
1.1 |
using namespace ZbData;
|
152 |
|
|
|
153 |
buchmann |
1.7 |
|
154 |
|
|
//*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/* DELETE EVERYTHING BETWEEN THIS LINE /*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*//
|
155 |
|
|
void SpecialCutFlow(string identifier);
|
156 |
|
|
|
157 |
|
|
//*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/* AND THIS LINE /*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*//
|
158 |
|
|
|
159 |
|
|
|
160 |
buchmann |
1.20 |
class CutYields{
|
161 |
|
|
public:
|
162 |
|
|
float data;
|
163 |
|
|
float Zb;
|
164 |
|
|
float Zc;
|
165 |
|
|
float Zl;
|
166 |
|
|
float tt;
|
167 |
|
|
float SiTo;
|
168 |
|
|
float Dibosons;
|
169 |
|
|
float WJets;
|
170 |
|
|
float Other;
|
171 |
|
|
|
172 |
|
|
CutYields();
|
173 |
|
|
};
|
174 |
|
|
|
175 |
|
|
CutYields::CutYields() {
|
176 |
|
|
this->data=0;
|
177 |
|
|
this->Zb=0;
|
178 |
|
|
this->Zc=0;
|
179 |
|
|
this->Zl=0;
|
180 |
|
|
this->tt=0;
|
181 |
|
|
this->SiTo=0;
|
182 |
|
|
this->Dibosons=0;
|
183 |
|
|
this->WJets=0;
|
184 |
|
|
this->Other=0;
|
185 |
|
|
}
|
186 |
|
|
|
187 |
|
|
std::ostream &operator<<(std::ostream &ostr, CutYields y)
|
188 |
|
|
{
|
189 |
|
|
return ostr << y.data << ";" << y.Zb << ";" << y.Zc << ";" << y.Zl << ";" << y.tt << ";" << y.SiTo << ";" << y.Dibosons << ";" << y.WJets << ";" << endl;
|
190 |
|
|
}
|
191 |
|
|
|
192 |
|
|
|
193 |
|
|
CutYields print_yield(TCut cut) {
|
194 |
|
|
|
195 |
|
|
CutYields Yield;
|
196 |
buchmann |
1.1 |
TH1F *data = allsamples.Draw("data", "mll",1,0,10000000, "m_{ll} [GeV]", "events", cut,data,luminosity);
|
197 |
buchmann |
1.7 |
dout << " Yields for " << (const char*) cut << endl;
|
198 |
buchmann |
1.20 |
// dout << " data: " << data->Integral() << endl;
|
199 |
|
|
|
200 |
|
|
Yield.data=data->Integral();
|
201 |
buchmann |
1.9 |
THStack mcm = allsamples.DrawStack("mc", "mll",1,0,10000000, "m_{ll} [GeV]", "events", cut,mc,luminosity);
|
202 |
buchmann |
1.1 |
int nhists = mcm.GetHists()->GetEntries();
|
203 |
|
|
TFile *test = new TFile("test.root","RECREATE");
|
204 |
|
|
mcm.Write();
|
205 |
|
|
test->Close();
|
206 |
|
|
for (int i = 0; i < nhists; i++) {
|
207 |
|
|
TH1* hist = static_cast<TH1*>(mcm.GetHists()->At(i));
|
208 |
buchmann |
1.20 |
string name=hist->GetName();
|
209 |
|
|
if(Contains(name,"t_bar_t")) Yield.tt+=hist->Integral();
|
210 |
|
|
if(Contains(name,"W_Jets")) Yield.WJets+=hist->Integral();
|
211 |
|
|
if(Contains(name,"Single_top")) Yield.SiTo+=hist->Integral();
|
212 |
|
|
if(Contains(name,"Dibosons")) Yield.Dibosons+=hist->Integral();
|
213 |
|
|
if(Contains(name,"Z_l_")) Yield.Zl+=hist->Integral();
|
214 |
|
|
if(Contains(name,"Z_c_")) Yield.Zc+=hist->Integral();
|
215 |
|
|
if(Contains(name,"Z_b_")) Yield.Zb+=hist->Integral();
|
216 |
|
|
}
|
217 |
|
|
|
218 |
buchmann |
1.26 |
dout << Yield << endl;
|
219 |
|
|
dout << endl << endl;
|
220 |
buchmann |
1.9 |
|
221 |
buchmann |
1.1 |
delete data;
|
222 |
buchmann |
1.20 |
CleanLegends();
|
223 |
|
|
DeleteStack(mcm);
|
224 |
|
|
|
225 |
|
|
return Yield;
|
226 |
buchmann |
1.1 |
}
|
227 |
|
|
|
228 |
buchmann |
1.2 |
void draw_kin_variable(string variable, TCut cut, int nbins, float min, float max, string xlabel, string saveas, bool dologscale, string speciallabel="") {
|
229 |
buchmann |
1.1 |
TCanvas *ckin = new TCanvas("ckin","kin variable canvas");
|
230 |
buchmann |
1.20 |
if(dologscale) ckin->SetLogy(1);
|
231 |
buchmann |
1.1 |
TH1F *datahisto = allsamples.Draw("datahisto",variable,nbins,min,max, xlabel, "events",cut,data,luminosity);
|
232 |
|
|
datahisto->SetMarkerSize(DataMarkerSize);
|
233 |
|
|
THStack mcstack = allsamples.DrawStack("mcstack",variable,nbins,min,max, xlabel, "events",cut,mc,luminosity);
|
234 |
buchmann |
1.2 |
if(dologscale) datahisto->SetMaximum(3*datahisto->GetMaximum());
|
235 |
|
|
else datahisto->SetMaximum(1.5*datahisto->GetMaximum());
|
236 |
buchmann |
1.20 |
|
237 |
|
|
float SumMC=0.0;
|
238 |
|
|
TIter nextH(mcstack.GetHists());
|
239 |
|
|
TH1F* h;
|
240 |
|
|
while ( h = (TH1F*)nextH() ) {
|
241 |
|
|
SumMC += h->Integral();
|
242 |
|
|
}
|
243 |
|
|
float scale = datahisto->Integral()/SumMC;
|
244 |
|
|
|
245 |
|
|
// Re-scale stack to data integral
|
246 |
|
|
nextH = TIter(mcstack.GetHists());
|
247 |
|
|
|
248 |
|
|
while ( h = (TH1F*)nextH() ) {
|
249 |
|
|
h->Scale(scale);
|
250 |
|
|
}
|
251 |
|
|
|
252 |
buchmann |
1.2 |
TText *speciall;
|
253 |
buchmann |
1.1 |
datahisto->Draw("e1");
|
254 |
|
|
ckin->Update();
|
255 |
buchmann |
1.19 |
mcstack.Draw("histo,same");
|
256 |
buchmann |
1.1 |
datahisto->Draw("same,e1");
|
257 |
|
|
TLegend *kinleg = allsamples.allbglegend();
|
258 |
buchmann |
1.20 |
|
259 |
buchmann |
1.1 |
kinleg->Draw();
|
260 |
|
|
|
261 |
|
|
TPad *kinpad = new TPad("kinpad","kinpad",0,0,1,1);
|
262 |
|
|
kinpad->cd();
|
263 |
buchmann |
1.20 |
if(dologscale) kinpad->SetLogy(1);
|
264 |
buchmann |
1.1 |
datahisto->Draw("e1");
|
265 |
buchmann |
1.19 |
mcstack.Draw("histo,same");
|
266 |
buchmann |
1.1 |
datahisto->Draw("same,e1");
|
267 |
|
|
datahisto->Draw("same,axis");
|
268 |
|
|
kinleg->Draw();
|
269 |
|
|
DrawPrelim();
|
270 |
|
|
saveas="kin/"+saveas;
|
271 |
buchmann |
1.20 |
kinpad->cd();
|
272 |
|
|
|
273 |
buchmann |
1.19 |
if(speciallabel!="") {
|
274 |
buchmann |
1.20 |
speciall = write_title(speciallabel);
|
275 |
|
|
speciall->SetX(0.18);
|
276 |
|
|
speciall->SetTextAlign(11);
|
277 |
|
|
speciall->SetTextSize(0.03);
|
278 |
|
|
speciall->SetY(0.85);
|
279 |
buchmann |
1.19 |
speciall->Draw();
|
280 |
|
|
}
|
281 |
buchmann |
1.20 |
|
282 |
buchmann |
1.24 |
Save_With_Ratio(datahisto,mcstack,kinpad->cd(),saveas);
|
283 |
buchmann |
1.1 |
|
284 |
|
|
datahisto->Delete();
|
285 |
buchmann |
1.20 |
delete kinleg;
|
286 |
buchmann |
1.1 |
delete ckin;
|
287 |
buchmann |
1.20 |
CleanLegends();
|
288 |
|
|
DeleteStack(mcstack);
|
289 |
buchmann |
1.1 |
}
|
290 |
buchmann |
1.20 |
|
291 |
buchmann |
1.1 |
void print_all_b_yields() {
|
292 |
buchmann |
1.20 |
vector<CutYields> yields;
|
293 |
buchmann |
1.26 |
dout << "Basic selection with a b jet" << endl;
|
294 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&"ZbCHS3010_pfJetGoodNumBtag>0"));
|
295 |
buchmann |
1.26 |
dout << "Leading jet is a b-jet " << endl;
|
296 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB));
|
297 |
buchmann |
1.26 |
dout << "|#eta_{b}|<1.3 " << endl;
|
298 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB));
|
299 |
buchmann |
1.26 |
dout << "|#delta#phi(b<Z)|>2.7" << endl;
|
300 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut));
|
301 |
buchmann |
1.26 |
dout << "30<ptZ<1000 GeV" << endl;
|
302 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"));
|
303 |
buchmann |
1.26 |
dout << "#alpha < 0.35" << endl;
|
304 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"&&"(ZbCHS3010_alpha)<0.35"));
|
305 |
buchmann |
1.26 |
dout << "#alpha < 0.3" << endl;
|
306 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"&&"(ZbCHS3010_alpha)<0.3"));
|
307 |
buchmann |
1.26 |
/* dout << "#alpha < 0.2" << endl;
|
308 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"&&"(ZbCHS3010_alpha)<0.2"));
|
309 |
buchmann |
1.26 |
dout << "#alpha < 0.15" << endl;
|
310 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"&&"(ZbCHS3010_alpha)<0.15"));
|
311 |
buchmann |
1.26 |
dout << "#alpha < 0.1" << endl;
|
312 |
buchmann |
1.20 |
yields.push_back(print_yield(ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000"&&"(ZbCHS3010_alpha)<0.1"));*/
|
313 |
|
|
|
314 |
|
|
for(int iy=0;iy<yields.size();iy++) {
|
315 |
buchmann |
1.26 |
dout << yields[iy] << endl;
|
316 |
buchmann |
1.20 |
}
|
317 |
buchmann |
1.1 |
}
|
318 |
|
|
|
319 |
buchmann |
1.19 |
void DrawEvilCutFlow() {
|
320 |
buchmann |
1.7 |
stringstream MegaCut;
|
321 |
|
|
|
322 |
buchmann |
1.19 |
MegaCut << " 1*(" << (const char*) (ZplusBsel&&TCut("ZbCHS3010_pfJetGoodNumBtag>0")) << ")";
|
323 |
buchmann |
1.7 |
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB) << ")";
|
324 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB) << ")";
|
325 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut) << ")";
|
326 |
buchmann |
1.19 |
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000")) << ")";
|
327 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.3")) << ")";
|
328 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.2")) << ")";
|
329 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.15")) << ")";
|
330 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.1")) << ")";
|
331 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.05")) << ")";
|
332 |
buchmann |
1.7 |
MegaCut << " ";
|
333 |
|
|
|
334 |
|
|
TCanvas *can = new TCanvas("can","can");
|
335 |
|
|
can->SetLogy(1);
|
336 |
|
|
TCut basecut("mll>6||mll<10");
|
337 |
|
|
|
338 |
|
|
|
339 |
|
|
|
340 |
|
|
TLegend *leg = allsamples.allbglegend();
|
341 |
|
|
|
342 |
|
|
|
343 |
|
|
TH1F *data = allsamples.Draw("data", MegaCut.str(),11,-0.5,10.5, "", "events", basecut,data,luminosity);
|
344 |
buchmann |
1.20 |
THStack mcm = allsamples.DrawStack("mc", MegaCut.str(),11,-0.5,10.5, "", "events", basecut,mc,luminosity);
|
345 |
buchmann |
1.7 |
|
346 |
|
|
float runningsum=0;
|
347 |
|
|
for(int i=data->GetNbinsX();i>0;i--) {
|
348 |
|
|
runningsum+=data->GetBinContent(i);
|
349 |
|
|
data->SetBinContent(i,runningsum);
|
350 |
|
|
}
|
351 |
|
|
|
352 |
|
|
float minimum=data->GetMaximum();
|
353 |
|
|
|
354 |
|
|
TH1F* h;
|
355 |
|
|
TIter nextOF(mcm.GetHists());
|
356 |
|
|
while ( h = (TH1F*)nextOF() ) {
|
357 |
|
|
float runningsum=0;
|
358 |
|
|
minimum=data->GetMaximum();//done deliberately at each step so get the minimum of the last (!) contribution
|
359 |
|
|
for(int i=h->GetNbinsX();i>0;i--) {
|
360 |
|
|
runningsum+=h->GetBinContent(i);
|
361 |
|
|
h->SetBinContent(i,runningsum);
|
362 |
|
|
if(runningsum<minimum&&runningsum>0) minimum=runningsum;
|
363 |
|
|
}
|
364 |
|
|
}
|
365 |
|
|
|
366 |
|
|
|
367 |
|
|
|
368 |
|
|
data->SetMinimum(0.05*minimum);
|
369 |
|
|
can->cd(1)->SetBottomMargin(0.25);
|
370 |
|
|
data->GetXaxis()->SetBinLabel(1,"Pre-selection");
|
371 |
|
|
data->GetXaxis()->SetBinLabel(2,"Contains b jet");
|
372 |
|
|
data->GetXaxis()->SetBinLabel(3,"Leading jet is b-jet");
|
373 |
|
|
data->GetXaxis()->SetBinLabel(4,"|#eta_{b}|<1.3 ");
|
374 |
|
|
data->GetXaxis()->SetBinLabel(5,"|#delta#phi(b,Z)|>2.7");
|
375 |
buchmann |
1.19 |
data->GetXaxis()->SetBinLabel(6,"30<p_{T}^{Z}<1000 GeV");
|
376 |
buchmann |
1.7 |
data->GetXaxis()->SetBinLabel(7,"#alpha < 0.3");
|
377 |
|
|
data->GetXaxis()->SetBinLabel(8,"#alpha < 0.2");
|
378 |
|
|
data->GetXaxis()->SetBinLabel(9,"#alpha < 0.15");
|
379 |
|
|
data->GetXaxis()->SetBinLabel(10,"#alpha < 0.1");
|
380 |
|
|
data->GetXaxis()->SetBinLabel(11,"#alpha < 0.05");
|
381 |
|
|
data->GetXaxis()->LabelsOption("v");
|
382 |
|
|
|
383 |
|
|
data->Draw("e1");
|
384 |
buchmann |
1.18 |
mcm.Draw("histo,same");
|
385 |
buchmann |
1.7 |
data->Draw("same,e1,axis");
|
386 |
|
|
data->Draw("same,e1");
|
387 |
|
|
// data->Draw("same,TEXT");
|
388 |
|
|
|
389 |
|
|
leg->Draw();
|
390 |
|
|
|
391 |
|
|
DrawPrelim();
|
392 |
|
|
|
393 |
|
|
CompleteSave(can,"CutFlow");
|
394 |
buchmann |
1.20 |
CleanLegends();
|
395 |
|
|
DeleteStack(mcm);
|
396 |
|
|
|
397 |
buchmann |
1.7 |
}
|
398 |
|
|
|
399 |
buchmann |
1.1 |
void draw_Zb_kin_vars() {
|
400 |
buchmann |
1.20 |
|
401 |
buchmann |
1.27 |
draw_kin_variable("pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Z p_{T}","Official/Zpt",1);
|
402 |
buchmann |
1.26 |
draw_kin_variable("pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Z p_{T}","Official/Zpt_ee",1);
|
403 |
|
|
draw_kin_variable("pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Z p_{T}","Official/Zpt_mm",1);
|
404 |
|
|
draw_kin_variable("pt",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Z p_{T}","Official/Zpt__nonBtagged",1);
|
405 |
|
|
draw_kin_variable("pt",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Z p_{T}","Official/Zpt__nonBtagged_ee",1);
|
406 |
|
|
draw_kin_variable("pt",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Z p_{T}","Official/Zpt__nonBtagged_mm",1);
|
407 |
|
|
|
408 |
buchmann |
1.20 |
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt",1);
|
409 |
buchmann |
1.26 |
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt_ee",1);
|
410 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt_mm",1);
|
411 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt__nonBtagged",1);
|
412 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt__nonBtagged_ee",1);
|
413 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Sub-Leading Jet Pt","Official/Jet2Pt__nonBtagged_mm",1);
|
414 |
|
|
|
415 |
buchmann |
1.20 |
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt",1);
|
416 |
buchmann |
1.26 |
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt_ee",1);
|
417 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt_mm",1);
|
418 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt__nonBtagged",1);
|
419 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==0"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt__nonBtagged_ee",1);
|
420 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]",ZplusBsel&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&id1==1"),25,0,200,"Leading Jet Pt (B)","Official/LeadingJetPt__nonBtagged_mm",1);
|
421 |
|
|
|
422 |
|
|
|
423 |
buchmann |
1.20 |
draw_kin_variable("ZbCHS3010_pfJetGoodPt[1]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),20,0,2,"p_{T}^{J2} / p_{T}^{Z}","Official/SubLeadingJetPt_Over_ZPt",1);
|
424 |
|
|
draw_kin_variable("ZbCHS3010_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<50"), 40,0,2,"#alpha","Official/alpha_pt_30_to_50",1);
|
425 |
|
|
draw_kin_variable("ZbCHS3010_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>50&&pt<75"), 40,0,2,"#alpha","Official/alpha_50_to_75",1);
|
426 |
|
|
draw_kin_variable("ZbCHS3010_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>75&&pt<125"), 40,0,2,"#alpha","Official/alpha_pt_75_to_125",1);
|
427 |
|
|
draw_kin_variable("ZbCHS3010_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>125&&pt<1000"),40,0,2,"#alpha","Official/alpha_pt_125_to_1000",1);
|
428 |
|
|
draw_kin_variable("ZbCHS3010_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000"),40,0,2,"#alpha","Official/alpha_pt_30_to_1000",1);
|
429 |
|
|
|
430 |
|
|
draw_kin_variable("ZbCHS3010_pfBJetDphiZ[0]",ZplusBsel&&LeadingB&&TCut("pt>30&&pt<1000&&pfBJetDphiZ[0]>0"),30,0,3.2,"#delta#phi (Z,b lead)","DeltaPhiZBlead",0);
|
431 |
buchmann |
1.1 |
}
|
432 |
|
|
|
433 |
|
|
void draw_mpf_vars() {
|
434 |
buchmann |
1.20 |
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.3"), 20,0.0,2.0,"Z+b MPF","mpf_alpha_smaller_0p3",0,"#alpha<0.3, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
435 |
|
|
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.2"), 20,0.0,2.0,"Z+b MPF","mpf_alpha_smaller_0p2",0,"#alpha<0.2, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
436 |
|
|
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.15"),20,0.0,2.0,"Z+b MPF","mpf_alpha_smaller_0p15",0,"#alpha<0.15, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
437 |
|
|
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.1"), 20,0.0,2.0,"Z+b MPF","mpf_alpha_smaller_0p1",0,"#alpha<0.1, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
438 |
|
|
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.05"),20,0.0,2.0,"Z+b MPF","mpf_alpha_smaller_0p05",0,"#alpha<0.05, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
439 |
|
|
|
440 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.3"), 20,0.0,2.0,"p_{T} b-jet / p_{T} Z","ptb_over_ptz___alpha_smaller_0p3", 0,"#alpha<0.3, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
441 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.2"), 20,0.0,2.0,"p_{T} b-jet / p_{T} Z","ptb_over_ptz___alpha_smaller_0p2", 0,"#alpha<0.2, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
442 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.15"),20,0.0,2.0,"p_{T} b-jet / p_{T} Z","ptb_over_ptz___alpha_smaller_0p15", 0,"#alpha<0.15, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
443 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.1"), 20,0.0,2.0,"p_{T} b-jet / p_{T} Z","ptb_over_ptz___alpha_smaller_0p1", 0,"#alpha<0.1, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
444 |
|
|
draw_kin_variable("ZbCHS3010_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<1000&&ZbCHS3010_alpha<0.05"),20,0.0,2.0,"p_{T} b-jet / p_{T} Z","ptb_over_ptz__mpf_alpha_smaller_0p05",0,"#alpha<0.05, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
445 |
buchmann |
1.1 |
}
|
446 |
|
|
|
447 |
buchmann |
1.25 |
void make_RooFit(string ContainerName, TH1F *h, float &peak, float &error_peak, string saveas) {
|
448 |
buchmann |
1.26 |
TCanvas *fcan = new TCanvas("fcan","fcan");
|
449 |
buchmann |
1.25 |
RooRealVar mpf("mpf","mpf", -5, 5, "");
|
450 |
|
|
RooDataHist AllData("AllData", "CMS Real Dataset", mpf , h);
|
451 |
|
|
|
452 |
|
|
RooRealVar fraction("fraction", "fraction", 0.8, 0, 1);
|
453 |
|
|
RooRealVar mean("mean", "mean", 1, 0, 3);
|
454 |
|
|
RooRealVar sigma("sigma", "sigma", 1, 0, 5);
|
455 |
|
|
RooRealVar width("width", "width", 2.4, 0, 5);
|
456 |
|
|
RooRealVar chevvar1("chevvar1", "chevvar1", 0.2,-1.0, 1.0);
|
457 |
|
|
RooRealVar chevvar2("chevvar2", "chevvar2", 0.2,-1.0, 1.0);
|
458 |
|
|
|
459 |
|
|
RooVoigtian signal("signal", "signal", mpf, mean, width, sigma);
|
460 |
|
|
RooChebychev background("background_", "background", mpf, RooArgList(chevvar1, chevvar2));
|
461 |
|
|
|
462 |
|
|
RooAddPdf pdf("pdf", "pdf", RooArgList(signal, background), fraction);
|
463 |
|
|
|
464 |
|
|
RooFitResult *result = pdf.fitTo(AllData, RooFit::Save());
|
465 |
|
|
RooPlot* frame = mpf.frame(RooFit::Bins(30), RooFit::Title("MPF")) ;
|
466 |
|
|
AllData.plotOn(frame);
|
467 |
|
|
pdf.plotOn(frame, RooFit::LineColor(kBlue)) ;
|
468 |
|
|
pdf.plotOn(frame, RooFit::Components(RooArgSet(background)), RooFit::LineStyle(kDashed), RooFit::LineColor(kRed)) ;
|
469 |
|
|
pdf.plotOn(frame, RooFit::Components(RooArgSet(signal)), RooFit::LineStyle(kDashed), RooFit::LineColor(kGreen)) ;
|
470 |
|
|
|
471 |
|
|
RooRealVar* thePeak = (RooRealVar*) result->floatParsFinal().find("mean");
|
472 |
|
|
peak = thePeak->getVal();
|
473 |
|
|
error_peak = thePeak->getError();
|
474 |
buchmann |
1.26 |
|
475 |
|
|
///******************* just making it beautiful ....
|
476 |
|
|
RooPlot* frame2 = mpf.frame(RooFit::Bins(30), RooFit::Title("MPF")) ;
|
477 |
|
|
TH1F *hcopy = (TH1F*)h->Clone("hcopy");
|
478 |
|
|
hcopy->Rebin(40);
|
479 |
|
|
RooDataHist AllRData("AllRData", "CMS Dataset", mpf , hcopy);
|
480 |
|
|
|
481 |
|
|
AllRData.plotOn(frame2);
|
482 |
|
|
pdf.plotOn(frame2, RooFit::LineColor(kBlue)) ;
|
483 |
|
|
pdf.plotOn(frame2, RooFit::Components(RooArgSet(background)), RooFit::LineStyle(kDashed), RooFit::LineColor(kRed)) ;
|
484 |
|
|
pdf.plotOn(frame2, RooFit::Components(RooArgSet(signal)), RooFit::LineStyle(kDashed), RooFit::LineColor(kGreen)) ;
|
485 |
buchmann |
1.25 |
|
486 |
|
|
string saveasFinal = saveas + "_Fit";
|
487 |
buchmann |
1.26 |
fcan->cd() ; gPad->SetLeftMargin(0.15) ; frame->GetYaxis()->SetTitleOffset(1.4) ; frame2->Draw();
|
488 |
|
|
|
489 |
buchmann |
1.27 |
if(Contains(saveas,"_data")) DrawPrelim();
|
490 |
buchmann |
1.26 |
else DrawMCPrelim();
|
491 |
buchmann |
1.25 |
|
492 |
buchmann |
1.26 |
CompleteSave(fcan, ContainerName+"/Fit/"+saveasFinal);
|
493 |
|
|
|
494 |
|
|
delete hcopy;
|
495 |
|
|
delete fcan;
|
496 |
buchmann |
1.25 |
delete frame;
|
497 |
|
|
delete thePeak;
|
498 |
|
|
}
|
499 |
|
|
|
500 |
buchmann |
1.28 |
float bother=0.1;
|
501 |
|
|
float bother2=1;
|
502 |
buchmann |
1.16 |
Value get_Zb_data_over_mc(string ContainerName, ZbResultContainer &res, string variable, string variable2, TCut cut, string saveas, float pt1, float pt2, float a1, float a2) {
|
503 |
buchmann |
1.12 |
TCanvas *cn = new TCanvas("cn","cn");
|
504 |
|
|
string varname="MPF";
|
505 |
buchmann |
1.19 |
|
506 |
buchmann |
1.27 |
if(a2<15.0/pt2 && a1>0) dout << "this bin ( " << a1 << " < alpha < " << a2 <<" and " << pt1 << " < p_{T}^{Z} < " << pt2 <<" ) is not expected to do a lot." << endl;
|
507 |
|
|
//note that "15.0" here is the subleading jet cut.
|
508 |
|
|
|
509 |
buchmann |
1.19 |
bool DoFit=false;
|
510 |
|
|
bool UseFit=false;
|
511 |
buchmann |
1.26 |
bool DoRooFit=false;
|
512 |
buchmann |
1.19 |
|
513 |
|
|
|
514 |
buchmann |
1.12 |
if(Contains(variable,"pfJetGood")) varname="R_{abs}";
|
515 |
buchmann |
1.20 |
// TH1F *hdata = allsamples.Draw("hdata",variable,1200,0,30, varname, "events", cut,data,luminosity);
|
516 |
|
|
// TH1F *hmc = allsamples.Draw("hmc" , variable,1200,0,30, varname, "events", cut, mc, luminosity);
|
517 |
buchmann |
1.27 |
TH1F *hdata, *hmc;
|
518 |
buchmann |
1.26 |
if(!DoRooFit) {
|
519 |
|
|
hdata = allsamples.Draw("hdata",variable,1200,ZbData::LowerHistoBoundary,ZbData::UpperHistoBoundary, varname, "events", cut,data,luminosity); // making it more precise
|
520 |
|
|
hmc = allsamples.Draw("hmc" , variable,1200,ZbData::LowerHistoBoundary,ZbData::UpperHistoBoundary, varname, "events", cut, mc, luminosity); // making it more precise
|
521 |
buchmann |
1.27 |
} else {
|
522 |
|
|
hdata = allsamples.Draw("hdata",variable,7200,0.0,6.0, varname, "events", cut,data,luminosity); // making it more precise
|
523 |
|
|
hmc = allsamples.Draw("hmc" , variable,7200,0.0,6.0, varname, "events", cut, mc, luminosity); // making it more precise
|
524 |
buchmann |
1.26 |
}
|
525 |
|
|
|
526 |
buchmann |
1.14 |
hmc->SetLineColor(kBlue);
|
527 |
|
|
|
528 |
buchmann |
1.10 |
float a=hdata->GetMean();
|
529 |
buchmann |
1.2 |
float b=hmc->GetMean();
|
530 |
|
|
float da=hdata->GetMeanError();
|
531 |
buchmann |
1.10 |
float db=hmc->GetMeanError();
|
532 |
buchmann |
1.2 |
float factor = a / b;
|
533 |
|
|
float error = TMath::Sqrt( (1/(b*b)) * (da*da) + ((a*a)/(b*b))*db*db);
|
534 |
buchmann |
1.12 |
|
535 |
buchmann |
1.14 |
TF1 *gaus_data = new TF1("gaus_data","gaus",0.7,1.3);
|
536 |
|
|
TF1 *gaus_mc = new TF1("gaus_mc","gaus",0.7,1.3);
|
537 |
buchmann |
1.19 |
if(DoFit) {
|
538 |
|
|
gaus_data->SetParameter(0,hdata->GetMaximum());
|
539 |
|
|
gaus_data->SetParameter(2,hdata->GetMean());
|
540 |
|
|
gaus_data->SetParameter(1,hdata->GetRMS());
|
541 |
|
|
hdata->Fit(gaus_data);
|
542 |
|
|
|
543 |
|
|
gaus_mc->SetParameter(0,hmc->GetMaximum());
|
544 |
|
|
gaus_mc->SetParameter(1,hmc->GetMean());
|
545 |
|
|
gaus_mc->SetParameter(2,hmc->GetRMS());
|
546 |
|
|
hmc->Fit(gaus_mc);
|
547 |
|
|
}
|
548 |
buchmann |
1.26 |
if(DoRooFit) {
|
549 |
buchmann |
1.27 |
|
550 |
buchmann |
1.26 |
if(hdata->Integral()>10) {
|
551 |
|
|
make_RooFit(ContainerName, hdata, a, da, saveas+"_data");
|
552 |
|
|
make_RooFit(ContainerName, hmc, b, db, saveas+"_mc");
|
553 |
|
|
factor = a / b;
|
554 |
|
|
error = TMath::Sqrt( (1/(b*b)) * (da*da) + ((a*a)/(b*b))*db*db);
|
555 |
|
|
} else {
|
556 |
|
|
factor=NAN;//set to nan
|
557 |
|
|
error=NAN;//set to nan
|
558 |
|
|
}
|
559 |
buchmann |
1.25 |
}
|
560 |
|
|
|
561 |
buchmann |
1.12 |
cn->cd();
|
562 |
buchmann |
1.26 |
hdata->Rebin(int(0.05*1200/(ZbData::UpperHistoBoundary-ZbData::LowerHistoBoundary)));
|
563 |
|
|
hmc->Rebin(int(0.05*1200/(ZbData::UpperHistoBoundary-ZbData::LowerHistoBoundary)));
|
564 |
buchmann |
1.22 |
hdata->GetYaxis()->SetTitle("events / 0.05");
|
565 |
buchmann |
1.14 |
hdata->SetMarkerColor(kRed);
|
566 |
buchmann |
1.19 |
if(DoFit) {
|
567 |
|
|
gaus_mc->SetLineColor(kBlue);
|
568 |
|
|
gaus_data->SetLineColor(kRed);
|
569 |
|
|
}
|
570 |
buchmann |
1.14 |
|
571 |
buchmann |
1.12 |
hdata->GetXaxis()->SetRangeUser(0,2);
|
572 |
buchmann |
1.16 |
hdata->GetYaxis()->SetTitleOffset(1.3);
|
573 |
buchmann |
1.12 |
hdata->Draw("e1");
|
574 |
buchmann |
1.22 |
|
575 |
|
|
hmc->Scale(hdata->Integral()/hmc->Integral());
|
576 |
|
|
if(hmc->GetMaximum()>hdata->GetMaximum()) hdata->SetMaximum((hmc->GetMaximum()+sqrt((double)hmc->GetMaximum()))*1.2);
|
577 |
|
|
|
578 |
buchmann |
1.12 |
hmc->Draw("histo,same");
|
579 |
|
|
hdata->Draw("e1,same");
|
580 |
buchmann |
1.19 |
if(DoFit) {
|
581 |
|
|
gaus_data->Draw("same");
|
582 |
|
|
gaus_mc->Draw("same");
|
583 |
|
|
}
|
584 |
|
|
|
585 |
buchmann |
1.12 |
stringstream summary;
|
586 |
buchmann |
1.16 |
summary << "#splitline{#bf{" << varname << "}}{#splitline{" << pt1 << " < p_{T}^{Z} < " << pt2 << ", " << a1 << " #leq #alpha < " << a2 << "}{#splitline{data: " << std::setprecision(4) << a << " #pm " << std::setprecision(4) << da << "}{";
|
587 |
buchmann |
1.14 |
summary << "#splitline{mc: " << std::setprecision(4) << b << " #pm " << std::setprecision(4) << db << "}{#splitline{ratio: " << factor;
|
588 |
buchmann |
1.19 |
summary << " #pm " << error;
|
589 |
|
|
if(DoFit) {
|
590 |
|
|
summary << "}{#splitline{}{#splitline{data fit: " << std::setprecision(4) << gaus_data->GetParameter(1) << "+/-";
|
591 |
|
|
summary << std::setprecision(4) << gaus_data->GetParError(1) << "}{#splitline{";
|
592 |
|
|
summary << "mc fit:" << std::setprecision(4) << gaus_mc->GetParameter(1) << "#pm" << std::setprecision(4) << gaus_mc->GetParError(1) << "}{ratio: ";
|
593 |
|
|
summary << gaus_data->GetParameter(1)/gaus_mc->GetParameter(1) << "#pm" << gaus_data->GetParameter(1)/gaus_mc->GetParameter(1) * sqrt((gaus_data->GetParError(1) * gaus_data->GetParError(1))/(gaus_data->GetParameter(1)*gaus_data->GetParameter(1)) + (gaus_mc->GetParError(1) * gaus_mc->GetParError(1))/(gaus_mc->GetParameter(1)*gaus_mc->GetParameter(1)) ) << "}}}}";
|
594 |
|
|
summary << "}}}}";
|
595 |
|
|
} else {
|
596 |
|
|
summary << "}{}}}}}";
|
597 |
|
|
}
|
598 |
|
|
|
599 |
|
|
if(UseFit) {
|
600 |
|
|
write_error(__FUNCTION__,"Requested using fit result for final result - not implemented yet!");
|
601 |
|
|
assert(0);
|
602 |
|
|
}
|
603 |
|
|
|
604 |
buchmann |
1.16 |
|
605 |
buchmann |
1.12 |
TText *infobox = write_title(summary.str());
|
606 |
|
|
infobox->SetX(0.75);
|
607 |
|
|
infobox->SetTextSize(0.03);
|
608 |
|
|
infobox->SetY(0.75);
|
609 |
|
|
infobox->Draw();
|
610 |
|
|
|
611 |
|
|
|
612 |
|
|
DrawPrelim();
|
613 |
buchmann |
1.16 |
CompleteSave(cn,ContainerName+"/ResponsePlots/"+saveas);
|
614 |
buchmann |
1.12 |
|
615 |
buchmann |
1.15 |
res.MPF_Rabs_location.push_back(ZbPointResult(variable,pt1,pt2,a1,a2,Value(a,da),Value(b,db)));
|
616 |
buchmann |
1.26 |
dout << "Data;" << a << ";"<<da<<";MC;"<<b<<";"<<db<<endl;
|
617 |
buchmann |
1.12 |
delete cn;
|
618 |
buchmann |
1.2 |
delete hdata;
|
619 |
|
|
delete hmc;
|
620 |
buchmann |
1.9 |
|
621 |
buchmann |
1.2 |
return Value(factor,error);
|
622 |
|
|
}
|
623 |
|
|
|
624 |
buchmann |
1.17 |
int nFakes=1;
|
625 |
buchmann |
1.20 |
|
626 |
|
|
float PurityInclusive=0.05;
|
627 |
|
|
float PurityLoose=0.20;
|
628 |
|
|
float PurityMedium=0.54;
|
629 |
|
|
float PurityTight=0.82;
|
630 |
|
|
|
631 |
|
|
|
632 |
buchmann |
1.25 |
void GetPtPointPosition(float AvPos[], const int nptcuts,string AlphaVariable, TCut basecut, float FaceValueToBeTakenAt, float ptcuts[]) {
|
633 |
|
|
for(int i=0;i<nptcuts-1;i++) {
|
634 |
|
|
stringstream specialcut;
|
635 |
|
|
specialcut << "((pt>30&& pt< 1000) && (" << AlphaVariable << "<" << FaceValueToBeTakenAt << "))";
|
636 |
|
|
TH1F *hdata = allsamples.Draw("hada", "pt",100,ptcuts[i],ptcuts[i+1], "MPF", "events", TCut(basecut && specialcut.str().c_str()), data, luminosity);
|
637 |
|
|
AvPos[i]=hdata->GetMean();
|
638 |
buchmann |
1.26 |
dout << AvPos[i] << " : ";
|
639 |
buchmann |
1.25 |
delete hdata;
|
640 |
|
|
}
|
641 |
buchmann |
1.26 |
dout << endl;
|
642 |
buchmann |
1.25 |
}
|
643 |
|
|
|
644 |
|
|
|
645 |
buchmann |
1.20 |
void DeterminePurity(TCut basecut, int nptcuts, float ptcuts[], string AlphaVariable, string ContainerName, float FaceValueToBeTakenAt) {
|
646 |
|
|
|
647 |
|
|
bool ComputePurity=false;
|
648 |
|
|
|
649 |
|
|
if(ContainerName=="inclusive") ComputePurity=true;
|
650 |
|
|
if(ContainerName=="loose") ComputePurity=true;
|
651 |
|
|
if(ContainerName=="medium") ComputePurity=true;
|
652 |
|
|
if(ContainerName=="reference") ComputePurity=true;
|
653 |
|
|
|
654 |
|
|
if(!ComputePurity) return;
|
655 |
|
|
|
656 |
|
|
stringstream specialcut;
|
657 |
|
|
specialcut << "((pt>30&& pt< 1000) && (" << AlphaVariable << "<" << FaceValueToBeTakenAt << "))";
|
658 |
|
|
|
659 |
|
|
THStack mcm = allsamples.DrawStack("mcm" , "mpf",1200,0,30, "MPF", "events", TCut(basecut && specialcut.str().c_str()), mc, luminosity);
|
660 |
|
|
int nhists = mcm.GetHists()->GetEntries();
|
661 |
|
|
|
662 |
|
|
float total=0;
|
663 |
|
|
float Zb=0;
|
664 |
|
|
|
665 |
|
|
for (int i = 0; i < nhists; i++) {
|
666 |
|
|
TH1* hist = static_cast<TH1*>(mcm.GetHists()->At(i));
|
667 |
|
|
string name=hist->GetName();
|
668 |
|
|
if(Contains(name,"t_bar_t")) total+=hist->Integral();
|
669 |
|
|
if(Contains(name,"W_Jets")) total+=hist->Integral();
|
670 |
|
|
if(Contains(name,"Single_top")) total+=hist->Integral();
|
671 |
|
|
if(Contains(name,"Dibosons")) total+=hist->Integral();
|
672 |
|
|
if(Contains(name,"Z_l_")) total+=hist->Integral();
|
673 |
|
|
if(Contains(name,"Z_c_")) total+=hist->Integral();
|
674 |
|
|
if(Contains(name,"Z_b_")) {
|
675 |
|
|
total+=hist->Integral();
|
676 |
|
|
Zb+=hist->Integral();
|
677 |
|
|
}
|
678 |
|
|
}
|
679 |
buchmann |
1.17 |
|
680 |
buchmann |
1.20 |
float purity=Zb/total;
|
681 |
buchmann |
1.26 |
dout << "Determined a purity of " << 100*purity << " % for the container \"" << ContainerName << "\"" << endl;
|
682 |
buchmann |
1.20 |
|
683 |
|
|
if(ContainerName=="inclusive") PurityInclusive=purity;
|
684 |
|
|
if(ContainerName=="loose") PurityLoose=purity;
|
685 |
|
|
if(ContainerName=="medium") PurityMedium=purity;
|
686 |
|
|
if(ContainerName=="reference") PurityTight=purity;
|
687 |
buchmann |
1.17 |
|
688 |
buchmann |
1.20 |
DeleteStack(mcm);
|
689 |
buchmann |
1.17 |
}
|
690 |
buchmann |
1.19 |
|
691 |
buchmann |
1.22 |
string NiceAlphaPrint(float alpha) {
|
692 |
|
|
//get in : 0.3, return 0p3 ...
|
693 |
|
|
stringstream res;
|
694 |
|
|
res << int(alpha) << "p" << int(100*alpha);
|
695 |
|
|
return res.str();
|
696 |
|
|
}
|
697 |
buchmann |
1.19 |
|
698 |
|
|
ZbResultContainer new_data_mc_agreement_2d(bool gofast, string AlphaVariable, string ContainerName, TCut BTagCut, TCut BTagWgt, float FaceValueToBeTakenAt) {
|
699 |
buchmann |
1.17 |
|
700 |
buchmann |
1.19 |
if(gofast) write_info(__FUNCTION__,"Fast mode activated for "+ContainerName);
|
701 |
buchmann |
1.15 |
ZbResultContainer results(ContainerName);
|
702 |
buchmann |
1.2 |
|
703 |
buchmann |
1.19 |
cutWeight=STDWEIGHT*BTagWgt;
|
704 |
buchmann |
1.15 |
LeadingB=BTagCut;
|
705 |
buchmann |
1.13 |
|
706 |
buchmann |
1.20 |
|
707 |
buchmann |
1.3 |
gStyle->SetOptFit(0);
|
708 |
buchmann |
1.2 |
TCut basecut(ZplusBsel&&LeadingB&&EtaB&&PhiZcut);
|
709 |
buchmann |
1.17 |
const int nalphacuts=6;
|
710 |
|
|
float alphacuts[nalphacuts] = {0.1,0.15,0.2,0.25,0.3,0.35};
|
711 |
buchmann |
1.15 |
|
712 |
buchmann |
1.20 |
|
713 |
buchmann |
1.17 |
const int nptcuts=5;
|
714 |
|
|
float ptcuts[nptcuts]={30,50,75,125,1000};
|
715 |
buchmann |
1.25 |
float ptPointPosition[nptcuts];
|
716 |
|
|
GetPtPointPosition(ptPointPosition,nptcuts,AlphaVariable,basecut,FaceValueToBeTakenAt,ptcuts);
|
717 |
|
|
|
718 |
buchmann |
1.15 |
|
719 |
buchmann |
1.20 |
DeterminePurity(basecut, nptcuts,ptcuts, AlphaVariable, ContainerName, FaceValueToBeTakenAt);
|
720 |
buchmann |
1.2 |
|
721 |
|
|
float MPF_Results[nalphacuts][nptcuts];
|
722 |
|
|
float MPF_Errors[nalphacuts][nptcuts];
|
723 |
|
|
float RABS_Results[nalphacuts][nptcuts];
|
724 |
|
|
float RABS_Errors[nalphacuts][nptcuts];
|
725 |
|
|
|
726 |
|
|
|
727 |
buchmann |
1.19 |
for(int ia=0;ia<nalphacuts && !gofast;ia++) {
|
728 |
buchmann |
1.2 |
for(int ipt=0;ipt<nptcuts-1;ipt++) {
|
729 |
|
|
stringstream specialcut;
|
730 |
buchmann |
1.15 |
float alow,ahigh;
|
731 |
|
|
if(ia>0) {
|
732 |
|
|
specialcut << "((pt>" << ptcuts[ipt] << " && pt< " << ptcuts[ipt+1] << ") && (" << AlphaVariable << "<" << alphacuts[ia] << " && " << AlphaVariable << ">" << alphacuts[ia-1] << "))";
|
733 |
|
|
alow=alphacuts[ia-1];
|
734 |
|
|
ahigh=alphacuts[ia];
|
735 |
|
|
} else {
|
736 |
|
|
specialcut << "((pt>" << ptcuts[ipt] << " && pt< " << ptcuts[ipt+1] << ") && (" << AlphaVariable << "<" << alphacuts[ia] << "))";
|
737 |
|
|
alow=0;
|
738 |
|
|
ahigh=alphacuts[ia];
|
739 |
|
|
}
|
740 |
buchmann |
1.26 |
dout << specialcut.str() << endl;
|
741 |
buchmann |
1.22 |
Value MPF_data_over_mc = get_Zb_data_over_mc(ContainerName,results,"mpf","",TCut(basecut && specialcut.str().c_str()),"MPF___pt_"+any2string(ptcuts[ipt])+"_"+any2string(ptcuts[ipt+1])+"__alpha_"+any2string(NiceAlphaPrint(alphacuts[ia])), ptcuts[ipt], ptcuts[ipt+1],alow,ahigh);
|
742 |
|
|
Value RABS_data_over_mc = get_Zb_data_over_mc(ContainerName,results,"ZbCHS3010_pfJetGoodPt[0]/pt","",TCut(basecut && specialcut.str().c_str()),"Rabs___pt_"+any2string(ptcuts[ipt])+"_"+any2string(ptcuts[ipt+1])+"__alpha_"+any2string(NiceAlphaPrint(alphacuts[ia])), ptcuts[ipt], ptcuts[ipt+1],alow,ahigh);
|
743 |
buchmann |
1.2 |
|
744 |
|
|
MPF_Results[ia][ipt]=MPF_data_over_mc.getValue();
|
745 |
|
|
MPF_Errors[ia][ipt]=MPF_data_over_mc.getError();
|
746 |
|
|
|
747 |
|
|
RABS_Results[ia][ipt]=RABS_data_over_mc.getValue();
|
748 |
|
|
RABS_Errors[ia][ipt]=RABS_data_over_mc.getError();
|
749 |
|
|
|
750 |
buchmann |
1.27 |
dout << "alpha in [" << alow << " , " << ahigh << " and pt range [" << ptcuts[ipt] << " , " << ptcuts[ipt+1] << "] \t : \t" << specialcut.str() << " \t \t --> " << MPF_data_over_mc << " (MPF) " << RABS_data_over_mc << " (RABS)" << endl;
|
751 |
buchmann |
1.2 |
}
|
752 |
|
|
}
|
753 |
|
|
|
754 |
|
|
float MPF_ExtraPolatedResults[nptcuts];
|
755 |
|
|
float RABS_ExtraPolatedResults[nptcuts];
|
756 |
|
|
|
757 |
|
|
TCanvas *can = new TCanvas("can");
|
758 |
buchmann |
1.14 |
can->cd(1)->SetLeftMargin(0.15);
|
759 |
buchmann |
1.2 |
|
760 |
|
|
TGraphErrors *MPF_FinalGraph = new TGraphErrors();
|
761 |
|
|
TGraphErrors *RABS_FinalGraph = new TGraphErrors();
|
762 |
buchmann |
1.13 |
TGraphErrors *MPF_FaceValueAtPoint3 = new TGraphErrors();
|
763 |
|
|
TGraphErrors *RABS_FaceValueAtPoint3 = new TGraphErrors();
|
764 |
buchmann |
1.2 |
|
765 |
|
|
for(int ipt=0;ipt<nptcuts-1;ipt++) {
|
766 |
|
|
|
767 |
|
|
stringstream filename;
|
768 |
|
|
filename << "Extrapolation/Zplusb_data_over_mc___" << ptcuts[ipt] << "_to_" << ptcuts[ipt+1];
|
769 |
buchmann |
1.26 |
dout << "Going to create histo for " << filename.str() << endl;
|
770 |
buchmann |
1.2 |
TGraphErrors *mpf_gr =new TGraphErrors();
|
771 |
|
|
TGraphErrors *rabs_gr =new TGraphErrors();
|
772 |
buchmann |
1.27 |
mpf_gr->SetName("MPF_Graph");
|
773 |
|
|
rabs_gr->SetName("Rabs_Graph");
|
774 |
buchmann |
1.13 |
|
775 |
|
|
int rabs_counter=0;
|
776 |
|
|
int mpf_counter=0;
|
777 |
|
|
|
778 |
buchmann |
1.19 |
for(int ia=0;ia<nalphacuts && !gofast;ia++) {
|
779 |
buchmann |
1.26 |
dout << "Setting a point for an alpha cut at " << alphacuts[ia] << " with value " << MPF_Results[ia][ipt] << " (MPF) and " << RABS_Results[ia][ipt] << " (RABS)" << endl;
|
780 |
buchmann |
1.13 |
if(MPF_Results[ia][ipt]==MPF_Results[ia][ipt] && MPF_Errors[ia][ipt]==MPF_Errors[ia][ipt]) { // remove nan's
|
781 |
|
|
mpf_gr->SetPoint(mpf_counter,alphacuts[ia],MPF_Results[ia][ipt]);
|
782 |
|
|
mpf_gr->SetPointError(mpf_counter,0,MPF_Errors[ia][ipt]);
|
783 |
|
|
mpf_counter++;
|
784 |
|
|
} else {
|
785 |
|
|
dout << "Detected BS for MPF method (bin ignored) : " << endl;
|
786 |
|
|
dout << " alpha: " << alphacuts[ia] << " , pt range: " << ptcuts[ipt] << " < pt < " << ptcuts[ipt+1] << endl;
|
787 |
buchmann |
1.26 |
dout << " value (MPF) : " << MPF_Results[ia][ipt] << " +/- " << MPF_Errors[ia][ipt] << endl;
|
788 |
buchmann |
1.13 |
}
|
789 |
|
|
if(RABS_Results[ia][ipt]==RABS_Results[ia][ipt] && RABS_Errors[ia][ipt]==RABS_Errors[ia][ipt]) {
|
790 |
|
|
rabs_gr->SetPoint(rabs_counter,alphacuts[ia],RABS_Results[ia][ipt]);
|
791 |
|
|
rabs_gr->SetPointError(rabs_counter,0,RABS_Errors[ia][ipt]);
|
792 |
|
|
rabs_counter++;
|
793 |
|
|
} else {
|
794 |
|
|
dout << "Detected BS for RABS method (bin ignored) : " << endl;
|
795 |
|
|
dout << " alpha: " << alphacuts[ia] << " , pt range: " << ptcuts[ipt] << " < pt < " << ptcuts[ipt+1] << endl;
|
796 |
buchmann |
1.26 |
dout << " value (RABS) : " << RABS_Results[ia][ipt] << " +/- " << RABS_Errors[ia][ipt] << endl;
|
797 |
buchmann |
1.13 |
}
|
798 |
|
|
}
|
799 |
|
|
|
800 |
|
|
stringstream specialcut;
|
801 |
buchmann |
1.19 |
specialcut << "((pt>" << ptcuts[ipt] << " && pt< " << ptcuts[ipt+1] << ") && (" << AlphaVariable << "<" << FaceValueToBeTakenAt << "))";
|
802 |
|
|
Value MPF_data_over_mc = get_Zb_data_over_mc(ContainerName,results,"mpf","",TCut(basecut && specialcut.str().c_str()),"MPF___pt_"+any2string(ptcuts[ipt])+"_"+any2string(ptcuts[ipt+1])+"__INCLUSIVEalpha_"+any2string(FaceValueToBeTakenAt),ptcuts[ipt],ptcuts[ipt+1],0,FaceValueToBeTakenAt);
|
803 |
|
|
Value RABS_data_over_mc = get_Zb_data_over_mc(ContainerName,results,"ZbCHS3010_pfJetGoodPt[0]/pt","",TCut(basecut && specialcut.str().c_str()),"Rabs___pt_"+any2string(ptcuts[ipt])+"_"+any2string(ptcuts[ipt+1])+"__INCLUSIVEalpha_"+any2string(FaceValueToBeTakenAt),ptcuts[ipt],ptcuts[ipt+1],0,FaceValueToBeTakenAt);
|
804 |
buchmann |
1.26 |
dout << "About to add a point in pt (" << (ptcuts[ipt]+ptcuts[ipt+1])/2 << " ) to face value : " << MPF_data_over_mc << " (MPF) , " << RABS_data_over_mc << "(RABS)" << endl;
|
805 |
buchmann |
1.13 |
MPF_FaceValueAtPoint3->SetPoint(ipt,(ptcuts[ipt]+ptcuts[ipt+1])/2,MPF_data_over_mc.getValue());
|
806 |
|
|
MPF_FaceValueAtPoint3->SetPointError(ipt,0,MPF_data_over_mc.getError());
|
807 |
|
|
RABS_FaceValueAtPoint3->SetPoint(ipt,(ptcuts[ipt]+ptcuts[ipt+1])/2,RABS_data_over_mc.getValue());
|
808 |
|
|
RABS_FaceValueAtPoint3->SetPointError(ipt,0,RABS_data_over_mc.getError());
|
809 |
buchmann |
1.2 |
|
810 |
|
|
|
811 |
buchmann |
1.26 |
TH1D *mpf_band, *rabs_band;
|
812 |
buchmann |
1.19 |
|
813 |
|
|
if(!gofast) {
|
814 |
|
|
can->cd();
|
815 |
|
|
mpf_gr->SetMarkerStyle(21);
|
816 |
|
|
mpf_gr->SetMarkerColor(kBlue);
|
817 |
|
|
mpf_gr->Draw("AP");
|
818 |
buchmann |
1.26 |
|
819 |
buchmann |
1.27 |
TF1 *mpf_pol = new TF1("mpf_pol","[0]+[1]*x",0.0,0.4);
|
820 |
buchmann |
1.26 |
|
821 |
buchmann |
1.28 |
mpf_gr->Fit(mpf_pol); // better error estimation using MINOS (E), quiet (Q) and using loglikelihood method
|
822 |
buchmann |
1.27 |
mpf_band = getBand(mpf_pol,"MPF_band");
|
823 |
buchmann |
1.19 |
mpf_gr->GetXaxis()->SetTitle("#alpha");
|
824 |
|
|
mpf_gr->GetXaxis()->CenterTitle();
|
825 |
|
|
mpf_gr->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
826 |
|
|
mpf_gr->GetYaxis()->CenterTitle();
|
827 |
buchmann |
1.27 |
mpf_band->SetMarkerSize(0);
|
828 |
buchmann |
1.19 |
mpf_pol->SetLineWidth(0);
|
829 |
buchmann |
1.27 |
mpf_pol->SetLineColor(mpf_band->GetFillColor());
|
830 |
buchmann |
1.19 |
TF1 *mpf_pol_complete = new TF1("mpf_pol_complete","[0]+[1]*x");
|
831 |
|
|
mpf_pol_complete->SetParameters(mpf_pol->GetParameters());
|
832 |
buchmann |
1.27 |
|
833 |
buchmann |
1.19 |
mpf_pol_complete->SetLineWidth(1);
|
834 |
|
|
mpf_pol_complete->SetLineColor(kBlue);
|
835 |
|
|
|
836 |
|
|
float min,max;
|
837 |
|
|
FindMinMax(mpf_gr,min,max);
|
838 |
|
|
TH1F *histo = new TH1F("histo","histo",1,0,0.4);
|
839 |
|
|
histo->GetXaxis()->SetTitle("#alpha");
|
840 |
|
|
histo->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
841 |
|
|
histo->GetXaxis()->CenterTitle();
|
842 |
|
|
histo->GetYaxis()->CenterTitle();
|
843 |
|
|
histo->GetYaxis()->SetTitleOffset(1.3);
|
844 |
|
|
histo->SetStats(0);
|
845 |
|
|
histo->GetXaxis()->SetRangeUser(0,0.4);
|
846 |
|
|
histo->GetYaxis()->SetRangeUser(min,max);
|
847 |
|
|
mpf_gr->GetYaxis()->SetRangeUser(min,max);
|
848 |
|
|
|
849 |
buchmann |
1.26 |
//TPolyLine *mpf_fit_uncert = GetFitUncertaintyShape(mpf_gr, "pol1", min, max,0.0,0.4);
|
850 |
|
|
|
851 |
buchmann |
1.19 |
mpf_pol->SetLineColor(TColor::GetColor("#0101DF"));
|
852 |
buchmann |
1.26 |
//mpf_fit_uncert->SetFillColor(TColor::GetColor("#A2A2FA"));
|
853 |
|
|
mpf_band->SetFillColor(TColor::GetColor("#A2A2FA"));
|
854 |
buchmann |
1.19 |
histo->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
855 |
|
|
histo->Draw();
|
856 |
buchmann |
1.26 |
//mpf_fit_uncert->Draw("F");
|
857 |
|
|
//mpf_fit_uncert->Draw("");
|
858 |
|
|
mpf_gr->Draw("P");
|
859 |
|
|
mpf_band->Draw("C E3 SAME");
|
860 |
buchmann |
1.19 |
mpf_gr->Draw("P");
|
861 |
|
|
mpf_pol_complete->Draw("same");
|
862 |
|
|
|
863 |
|
|
float mpf_a=mpf_pol->GetParameter(0);
|
864 |
|
|
float mpf_b=mpf_pol->GetParameter(1);
|
865 |
buchmann |
1.28 |
MPF_FinalGraph->SetPoint(ipt,0.5*(ptcuts[ipt]+ptcuts[ipt+1]),mpf_pol->GetParameter(0));
|
866 |
|
|
MPF_FinalGraph->SetPointError(ipt,0,mpf_band->GetBinError(mpf_band->FindBin(0)));
|
867 |
buchmann |
1.19 |
|
868 |
|
|
MPF_ExtraPolatedResults[ipt]=mpf_a;
|
869 |
|
|
|
870 |
|
|
stringstream mpf_info;
|
871 |
|
|
mpf_info << "#splitline{#splitline{#splitline{" << ptcuts[ipt] << " GeV < p_{T}^{Z} < " << ptcuts[ipt+1] << " GeV }{ (MPF) }}{Extrapolated value: " << std::setprecision(4) << mpf_a << "}}{#chi^{2}/NDF : " << mpf_pol->GetChisquare() << " / " << mpf_pol->GetNDF() << "}";
|
872 |
|
|
|
873 |
|
|
TText *mpf_mark = write_title(mpf_info.str());
|
874 |
|
|
mpf_mark->SetX(0.75);
|
875 |
|
|
mpf_mark->SetTextSize(0.03);
|
876 |
|
|
mpf_mark->SetY(0.75);
|
877 |
|
|
mpf_mark->Draw();
|
878 |
|
|
|
879 |
|
|
string filenamebkp=filename.str();
|
880 |
|
|
filename << "__MPF";
|
881 |
|
|
DrawPrelim();
|
882 |
|
|
CompleteSave(can,ContainerName+"/"+filename.str());
|
883 |
buchmann |
1.26 |
dout << "MPF : " << mpf_a << " + " << mpf_b << " * alpha " << endl;
|
884 |
buchmann |
1.19 |
|
885 |
|
|
filename.str("");
|
886 |
|
|
|
887 |
buchmann |
1.27 |
TF1 *rabs_pol = new TF1("rabs_pol","[0]+[1]*x",0.0,0.4);
|
888 |
|
|
rabs_gr->Fit(rabs_pol,"E");
|
889 |
|
|
rabs_band = getBand(rabs_pol,"Rabs_band");
|
890 |
|
|
rabs_pol->SetLineColor(rabs_band->GetFillColor());
|
891 |
buchmann |
1.19 |
rabs_gr->SetMarkerStyle(21);
|
892 |
|
|
rabs_gr->SetMarkerColor(kRed);
|
893 |
|
|
rabs_gr->Draw("AP");
|
894 |
buchmann |
1.26 |
//rabs_gr->Fit("pol1","E");
|
895 |
buchmann |
1.27 |
rabs_band->SetMarkerSize(0);
|
896 |
buchmann |
1.26 |
|
897 |
|
|
|
898 |
buchmann |
1.19 |
rabs_gr->GetXaxis()->SetTitle("#alpha");
|
899 |
|
|
rabs_gr->GetXaxis()->CenterTitle();
|
900 |
|
|
rabs_gr->GetYaxis()->SetTitle("<R_{abs}>_{data}/<R_{abs}>_{mc}");
|
901 |
|
|
rabs_gr->GetYaxis()->CenterTitle();
|
902 |
buchmann |
1.26 |
//TF1 *rabs_pol=(TF1*)rabs_gr->GetFunction("pol1");
|
903 |
buchmann |
1.19 |
rabs_pol->SetLineWidth(0);
|
904 |
|
|
TF1 *rabs_pol_complete = new TF1("rabs_pol_complete","[0]+[1]*x");
|
905 |
|
|
rabs_pol_complete->SetParameters(rabs_pol->GetParameters());
|
906 |
|
|
rabs_pol_complete->SetLineColor(kRed);
|
907 |
|
|
rabs_pol_complete->SetLineWidth(1);
|
908 |
|
|
FindMinMax(rabs_gr,min,max);
|
909 |
|
|
rabs_gr->GetYaxis()->SetRangeUser(min,max);
|
910 |
|
|
histo->GetYaxis()->SetRangeUser(min,max);
|
911 |
buchmann |
1.26 |
//TPolyLine *rabs_fit_uncert = GetFitUncertaintyShape(rabs_gr, "pol1", min, max,0.0,0.4);
|
912 |
|
|
rabs_pol->SetLineColor(TColor::GetColor("#F99C9C"));
|
913 |
|
|
rabs_pol->SetFillColor(TColor::GetColor("#F99C9C"));
|
914 |
buchmann |
1.27 |
// rabs_band->SetLineColor(TColor::GetColor("#F99C9C"));
|
915 |
buchmann |
1.26 |
rabs_band->SetFillColor(TColor::GetColor("#F99C9C"));
|
916 |
|
|
//rabs_fit_uncert->SetLineColor(TColor::GetColor("#F99C9C"));
|
917 |
|
|
//rabs_fit_uncert->SetFillColor(TColor::GetColor("#F99C9C"));
|
918 |
buchmann |
1.19 |
histo->GetYaxis()->SetTitle("<R_{abs}>_{data}/<R_{abs}>_{mc}");
|
919 |
|
|
histo->Draw();
|
920 |
buchmann |
1.26 |
rabs_band->Draw("C E3 SAME");
|
921 |
|
|
//rabs_fit_uncert->Draw("F");
|
922 |
|
|
//rabs_fit_uncert->Draw("");
|
923 |
buchmann |
1.19 |
rabs_gr->Draw("P");
|
924 |
|
|
rabs_pol_complete->Draw("same");
|
925 |
|
|
|
926 |
|
|
float rabs_a=rabs_pol->GetParameter(0);
|
927 |
|
|
float rabs_b=rabs_pol->GetParameter(1);
|
928 |
buchmann |
1.28 |
|
929 |
buchmann |
1.19 |
RABS_FinalGraph->SetPoint(ipt,0.5*(ptcuts[ipt]+ptcuts[ipt+1]),rabs_a);
|
930 |
buchmann |
1.28 |
RABS_FinalGraph->SetPointError(ipt,0,rabs_band->GetBinError(rabs_band->FindBin(0)));
|
931 |
buchmann |
1.19 |
|
932 |
buchmann |
1.28 |
dout << "!+!+!+!+!+!+!+!+!+ Just added a point to the final plot : " << rabs_a << " +/- " << rabs_band->GetBinError(rabs_band->FindBin(0)) << endl;
|
933 |
buchmann |
1.19 |
|
934 |
|
|
stringstream rabs_info;
|
935 |
|
|
rabs_info << "#splitline{#splitline{#splitline{" << ptcuts[ipt] << " GeV < p_{T}^{Z} < " << ptcuts[ipt+1] << " GeV }{ (R_{abs}) }}{Extrapolated value: " << std::setprecision(4) << rabs_a << "}}{#chi^{2}/NDF : " << rabs_pol->GetChisquare() << " / " << rabs_pol->GetNDF() << "}";
|
936 |
|
|
TText *rabs_mark = write_title(rabs_info.str());
|
937 |
|
|
rabs_mark->SetX(0.75);
|
938 |
|
|
rabs_mark->SetTextSize(0.03);
|
939 |
|
|
rabs_mark->SetY(0.75);
|
940 |
|
|
rabs_mark->Draw();
|
941 |
|
|
|
942 |
|
|
RABS_ExtraPolatedResults[ipt]=rabs_a;
|
943 |
|
|
filename << filenamebkp << "__RABS";
|
944 |
|
|
DrawPrelim();
|
945 |
|
|
CompleteSave(can,ContainerName+"/"+filename.str());
|
946 |
buchmann |
1.26 |
dout << "RABS : " << rabs_a << " + " << rabs_b << " * alpha " << endl;
|
947 |
buchmann |
1.28 |
|
948 |
|
|
delete mpf_band;
|
949 |
|
|
delete rabs_band;
|
950 |
buchmann |
1.19 |
}
|
951 |
|
|
}
|
952 |
|
|
|
953 |
|
|
float MPFResult;
|
954 |
|
|
float MPFResultError;
|
955 |
|
|
|
956 |
|
|
float RabsResult;
|
957 |
|
|
float RabsResultError;
|
958 |
|
|
|
959 |
|
|
if(!gofast) {
|
960 |
|
|
MPF_FinalGraph->SetMarkerStyle(21);
|
961 |
|
|
MPF_FinalGraph->SetMarkerColor(kBlue);
|
962 |
|
|
MPF_FinalGraph->Fit("pol0",""); // quiet, use minos
|
963 |
|
|
|
964 |
|
|
TF1 *mpf_pol0=(TF1*)MPF_FinalGraph->GetFunction("pol0");
|
965 |
|
|
TF1 *mpf_pol0_complete = new TF1("mpf_pol0_complete","[0]+[1]*x");
|
966 |
|
|
mpf_pol0_complete->SetLineWidth(1);
|
967 |
|
|
mpf_pol0_complete->SetLineColor(kBlue);
|
968 |
|
|
mpf_pol0->SetLineColor(kBlue);
|
969 |
|
|
MPF_FinalGraph->Draw("AP");
|
970 |
|
|
MPF_FinalGraph->GetXaxis()->SetTitle("p_{T}^{Z}");
|
971 |
|
|
MPF_FinalGraph->GetXaxis()->CenterTitle();
|
972 |
|
|
MPF_FinalGraph->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
973 |
|
|
MPF_FinalGraph->GetYaxis()->CenterTitle();
|
974 |
|
|
MPF_FinalGraph->Draw("AP");
|
975 |
|
|
mpf_pol0_complete->Draw("same");
|
976 |
|
|
|
977 |
|
|
stringstream mpf_result;
|
978 |
|
|
mpf_result << "#splitline{C_{abs}= " << std::setprecision(5) << 1/mpf_pol0->GetParameter(0) << " #pm " << std::setprecision(2) << mpf_pol0->GetParError(0)/(mpf_pol0->GetParameter(0)*mpf_pol0->GetParameter(0)) << "}{ (MPF)}";
|
979 |
|
|
TText *rmpf_final_mark = write_title(mpf_result.str());
|
980 |
|
|
rmpf_final_mark->SetX(0.75);
|
981 |
|
|
rmpf_final_mark->SetY(0.75);
|
982 |
|
|
rmpf_final_mark->SetTextSize(0.03);
|
983 |
|
|
rmpf_final_mark->Draw();
|
984 |
buchmann |
1.3 |
DrawPrelim();
|
985 |
buchmann |
1.19 |
MPFResult=1/mpf_pol0->GetParameter(0);
|
986 |
|
|
MPFResultError=mpf_pol0->GetParError(0)/(mpf_pol0->GetParameter(0)*mpf_pol0->GetParameter(0));
|
987 |
buchmann |
1.2 |
|
988 |
buchmann |
1.19 |
stringstream filename2;
|
989 |
|
|
filename2 << "Extrapolation/FINAL_RESULT_MPF";
|
990 |
|
|
CompleteSave(can,ContainerName+"/"+filename2.str());
|
991 |
|
|
|
992 |
|
|
RABS_FinalGraph->SetMarkerStyle(21);
|
993 |
|
|
RABS_FinalGraph->SetMarkerStyle(21);
|
994 |
|
|
RABS_FinalGraph->SetMarkerColor(kRed);
|
995 |
|
|
RABS_FinalGraph->Fit("pol0","QE"); // quiet, use minos
|
996 |
|
|
RABS_FinalGraph->Draw("AP");
|
997 |
|
|
RABS_FinalGraph->GetXaxis()->SetTitle("p_{T}^{Z}");
|
998 |
|
|
RABS_FinalGraph->GetXaxis()->CenterTitle();
|
999 |
|
|
RABS_FinalGraph->GetYaxis()->SetTitle("<R_{abs}>_{data}/<R_{abs}>_{mc}");
|
1000 |
|
|
RABS_FinalGraph->GetYaxis()->CenterTitle();
|
1001 |
|
|
RABS_FinalGraph->Draw("AP");
|
1002 |
|
|
TF1 *rabs_pol0=(TF1*)RABS_FinalGraph->GetFunction("pol0");
|
1003 |
|
|
stringstream rabs_result;
|
1004 |
|
|
rabs_result << "#splitline{C_{abs}= " << std::setprecision(5) << 1/rabs_pol0->GetParameter(0) << " #pm " << std::setprecision(2) << rabs_pol0->GetParError(0)/(rabs_pol0->GetParameter(0)*rabs_pol0->GetParameter(0)) << "}{ (R_{abs})}";;
|
1005 |
|
|
TText *rabs_final_mark = write_title(rabs_result.str());
|
1006 |
|
|
rabs_final_mark->SetX(0.75);
|
1007 |
|
|
rabs_final_mark->SetY(0.75);
|
1008 |
|
|
rabs_final_mark->SetTextSize(0.03);
|
1009 |
|
|
rabs_final_mark->Draw();
|
1010 |
|
|
DrawPrelim();
|
1011 |
buchmann |
1.2 |
|
1012 |
buchmann |
1.19 |
RabsResult=1/rabs_pol0->GetParameter(0);
|
1013 |
|
|
RabsResultError=rabs_pol0->GetParError(0)/(rabs_pol0->GetParameter(0)*rabs_pol0->GetParameter(0));
|
1014 |
buchmann |
1.3 |
|
1015 |
buchmann |
1.19 |
filename2.str("");
|
1016 |
|
|
filename2 << "Extrapolation/FINAL_RESULT_RABS";
|
1017 |
|
|
CompleteSave(can,ContainerName+"/"+filename2.str());
|
1018 |
buchmann |
1.2 |
}
|
1019 |
buchmann |
1.19 |
|
1020 |
buchmann |
1.9 |
can->cd();
|
1021 |
buchmann |
1.13 |
MPF_FaceValueAtPoint3->SetMarkerStyle(21);
|
1022 |
|
|
MPF_FaceValueAtPoint3->SetMarkerColor(kBlue);
|
1023 |
|
|
MPF_FaceValueAtPoint3->Fit("pol0","QE"); // quiet, use minos
|
1024 |
|
|
MPF_FaceValueAtPoint3->Draw("AP");
|
1025 |
|
|
MPF_FaceValueAtPoint3->GetXaxis()->SetTitle("p_{T}^{Z}");
|
1026 |
|
|
MPF_FaceValueAtPoint3->GetXaxis()->CenterTitle();
|
1027 |
buchmann |
1.19 |
MPF_FaceValueAtPoint3->GetYaxis()->SetTitle(((string)"<MPF>__{data}/<MPF>_{mc} for #alpha<"+any2string(FaceValueToBeTakenAt)).c_str());
|
1028 |
buchmann |
1.13 |
MPF_FaceValueAtPoint3->GetYaxis()->CenterTitle();
|
1029 |
|
|
MPF_FaceValueAtPoint3->Draw("AP");
|
1030 |
|
|
TF1 *faceval_pol0=(TF1*)MPF_FaceValueAtPoint3->GetFunction("pol0");
|
1031 |
|
|
faceval_pol0->SetLineColor(kBlue);
|
1032 |
|
|
faceval_pol0->SetLineWidth(1);
|
1033 |
|
|
faceval_pol0->Draw("same");
|
1034 |
|
|
TF1 *faceval_pol0_complete = new TF1("faceval_pol0_complete","[0]+[1]*x");
|
1035 |
|
|
faceval_pol0_complete->SetParameters(faceval_pol0->GetParameters());
|
1036 |
buchmann |
1.5 |
stringstream faceval_result;
|
1037 |
buchmann |
1.19 |
faceval_result << "#splitline{C_{abs}= " << std::setprecision(5) << 1/faceval_pol0->GetParameter(0) << " #pm " << std::setprecision(2) << faceval_pol0->GetParError(0)/(faceval_pol0->GetParameter(0)*faceval_pol0->GetParameter(0)) << "}{ (MPF at #alpha<" << FaceValueToBeTakenAt << ")}";;
|
1038 |
buchmann |
1.5 |
TText *faceval_final_mark = write_title(faceval_result.str());
|
1039 |
|
|
faceval_final_mark->SetX(0.75);
|
1040 |
|
|
faceval_final_mark->SetY(0.75);
|
1041 |
|
|
faceval_final_mark->SetTextSize(0.03);
|
1042 |
|
|
faceval_final_mark->Draw();
|
1043 |
|
|
DrawPrelim();
|
1044 |
|
|
|
1045 |
|
|
float FaceValResult=1/faceval_pol0->GetParameter(0);
|
1046 |
|
|
float FaceValResultError=faceval_pol0->GetParError(0)/(faceval_pol0->GetParameter(0)*faceval_pol0->GetParameter(0));
|
1047 |
|
|
|
1048 |
buchmann |
1.19 |
stringstream filename2;
|
1049 |
buchmann |
1.2 |
filename2.str("");
|
1050 |
buchmann |
1.9 |
filename2 << "Extrapolation/FINAL_RESULT_MPF_FaceValp3";
|
1051 |
buchmann |
1.15 |
CompleteSave(can,ContainerName+"/"+filename2.str());
|
1052 |
buchmann |
1.2 |
|
1053 |
buchmann |
1.13 |
can->cd();
|
1054 |
|
|
RABS_FaceValueAtPoint3->SetMarkerStyle(21);
|
1055 |
|
|
RABS_FaceValueAtPoint3->SetMarkerColor(kRed);
|
1056 |
|
|
RABS_FaceValueAtPoint3->Fit("pol0","QE"); // quiet, use minos
|
1057 |
|
|
RABS_FaceValueAtPoint3->Draw("AP");
|
1058 |
|
|
RABS_FaceValueAtPoint3->GetXaxis()->SetTitle("p_{T}^{Z}");
|
1059 |
|
|
RABS_FaceValueAtPoint3->GetXaxis()->CenterTitle();
|
1060 |
buchmann |
1.19 |
RABS_FaceValueAtPoint3->GetYaxis()->SetTitle(((string)"<R_{abs}>_{data}/<R_{abs}>_{mc} for #alpha<"+any2string(FaceValueToBeTakenAt)).c_str());
|
1061 |
buchmann |
1.13 |
RABS_FaceValueAtPoint3->GetYaxis()->CenterTitle();
|
1062 |
|
|
RABS_FaceValueAtPoint3->Draw("AP");
|
1063 |
|
|
TF1 *faceval_pol0RABS=(TF1*)RABS_FaceValueAtPoint3->GetFunction("pol0");
|
1064 |
|
|
TF1 *faceval_pol0RABS_complete = new TF1("faceval_pol0_complete","[0]+[1]*x");
|
1065 |
|
|
faceval_pol0RABS_complete->SetParameters(faceval_pol0RABS->GetParameters());
|
1066 |
|
|
faceval_pol0RABS->SetLineWidth(1);
|
1067 |
|
|
faceval_pol0RABS->SetLineColor(kRed);
|
1068 |
|
|
faceval_pol0RABS_complete->Draw("same");
|
1069 |
|
|
stringstream RABSfaceval_result;
|
1070 |
buchmann |
1.19 |
RABSfaceval_result << "#splitline{C_{abs}= " << std::setprecision(5) << 1/faceval_pol0RABS->GetParameter(0) << " #pm " << std::setprecision(2) << faceval_pol0RABS->GetParError(0)/(faceval_pol0RABS->GetParameter(0)*faceval_pol0RABS->GetParameter(0)) << "}{ (R_{abs} at #alpha<" << FaceValueToBeTakenAt << ")}";;
|
1071 |
buchmann |
1.13 |
TText *RABSfaceval_final_mark = write_title(RABSfaceval_result.str());
|
1072 |
|
|
RABSfaceval_final_mark->SetX(0.75);
|
1073 |
|
|
RABSfaceval_final_mark->SetY(0.75);
|
1074 |
|
|
RABSfaceval_final_mark->SetTextSize(0.03);
|
1075 |
|
|
RABSfaceval_final_mark->Draw();
|
1076 |
|
|
DrawPrelim();
|
1077 |
|
|
|
1078 |
|
|
float RABSFaceValResult=1/faceval_pol0RABS->GetParameter(0);
|
1079 |
|
|
float RABSFaceValResultError=faceval_pol0RABS->GetParError(0)/(faceval_pol0RABS->GetParameter(0)*faceval_pol0RABS->GetParameter(0));
|
1080 |
|
|
|
1081 |
|
|
filename2.str("");
|
1082 |
|
|
filename2 << "Extrapolation/FINAL_RESULT_RABS_FaceValp3";
|
1083 |
buchmann |
1.15 |
CompleteSave(can,ContainerName+"/"+filename2.str());
|
1084 |
buchmann |
1.13 |
|
1085 |
buchmann |
1.26 |
dout << "FINAL RESULTS: " << endl;
|
1086 |
|
|
if(!gofast) dout << "MPF : " << MPFResult << " +/- " << MPFResultError << endl;
|
1087 |
|
|
if(!gofast) dout << "Rabs: " << RabsResult << " +/- " << RabsResultError << endl;
|
1088 |
|
|
dout << "Face value at " << FaceValueToBeTakenAt << " :" << FaceValResult << " +/- " << FaceValResultError << " (MPF) " << endl;
|
1089 |
|
|
dout << "Face value at " << FaceValueToBeTakenAt << " :" << RABSFaceValResult << " +/- " << RABSFaceValResultError << " (RABS) " << endl;
|
1090 |
buchmann |
1.2 |
|
1091 |
|
|
delete can;
|
1092 |
|
|
|
1093 |
buchmann |
1.28 |
|
1094 |
|
|
|
1095 |
|
|
for(unsigned int i=0;i<MPF_FinalGraph->GetN();i++) {
|
1096 |
|
|
double x,y,dy;
|
1097 |
|
|
MPF_FinalGraph->GetPoint(i,x,y);
|
1098 |
|
|
dy = MPF_FinalGraph->GetErrorY(i);
|
1099 |
|
|
results.MPF_Result_Extrapolated_Bins.push_back(Value(y,dy));
|
1100 |
|
|
}
|
1101 |
|
|
|
1102 |
|
|
for(unsigned int i=0;i<MPF_FaceValueAtPoint3->GetN();i++) {
|
1103 |
|
|
double x,y,dy;
|
1104 |
|
|
MPF_FaceValueAtPoint3->GetPoint(i,x,y);
|
1105 |
|
|
dy = MPF_FaceValueAtPoint3->GetErrorY(i);
|
1106 |
|
|
results.MPF_Result_FaceValue_Bins.push_back(Value(y,dy));
|
1107 |
|
|
}
|
1108 |
|
|
|
1109 |
|
|
for(unsigned int i=0;i<RABS_FinalGraph->GetN();i++) {
|
1110 |
|
|
double x,y,dy;
|
1111 |
|
|
RABS_FinalGraph->GetPoint(i,x,y);
|
1112 |
|
|
dy = RABS_FinalGraph->GetErrorY(i);
|
1113 |
|
|
results.Rabs_Result_Extrapolated_Bins.push_back(Value(y,dy));
|
1114 |
|
|
}
|
1115 |
|
|
|
1116 |
|
|
for(unsigned int i=0;i<RABS_FaceValueAtPoint3->GetN();i++) {
|
1117 |
|
|
double x,y,dy;
|
1118 |
|
|
RABS_FaceValueAtPoint3->GetPoint(i,x,y);
|
1119 |
|
|
dy = RABS_FaceValueAtPoint3->GetErrorY(i);
|
1120 |
|
|
results.Rabs_Result_FaceValue_Bins.push_back(Value(y,dy));
|
1121 |
|
|
}
|
1122 |
|
|
|
1123 |
|
|
|
1124 |
buchmann |
1.15 |
results.MPF_Result_FaceValue=Value(FaceValResult,FaceValResultError);
|
1125 |
|
|
results.Rabs_Result_FaceValue=Value(RABSFaceValResult,RABSFaceValResultError);
|
1126 |
buchmann |
1.19 |
if(!gofast) results.MPF_Result_Extrapolated=Value(MPFResult,MPFResultError);
|
1127 |
|
|
if(!gofast) results.Rabs_Result_Extrapolated=Value(RabsResult,RabsResultError);
|
1128 |
buchmann |
1.26 |
results.Print();
|
1129 |
buchmann |
1.15 |
return results;
|
1130 |
buchmann |
1.2 |
}
|
1131 |
|
|
|
1132 |
|
|
|
1133 |
buchmann |
1.19 |
void DoPUStudy(string identifier) {
|
1134 |
buchmann |
1.9 |
|
1135 |
|
|
float numVtxcuts[7]={0,10,15,20};
|
1136 |
|
|
|
1137 |
|
|
TCanvas *can = new TCanvas("can","can");
|
1138 |
|
|
TH1F *malpha[8];
|
1139 |
|
|
TH1F *dalpha[8];
|
1140 |
buchmann |
1.26 |
dout << identifier << ";";
|
1141 |
|
|
dout << endl;
|
1142 |
buchmann |
1.9 |
for(int i=1;i<5;i++) {
|
1143 |
|
|
stringstream sSpecialCut;
|
1144 |
|
|
if(i<4) {
|
1145 |
|
|
sSpecialCut << "numVtx>" << numVtxcuts[i-1] << " && numVtx<" << numVtxcuts[i];
|
1146 |
buchmann |
1.26 |
dout << numVtxcuts[i-1] << " < nVtx < " << numVtxcuts[i] << ";";
|
1147 |
buchmann |
1.9 |
} else {
|
1148 |
|
|
sSpecialCut << "numVtx>" << numVtxcuts[i-1];
|
1149 |
buchmann |
1.26 |
dout << numVtxcuts[i-1] << ";";
|
1150 |
buchmann |
1.9 |
}
|
1151 |
|
|
|
1152 |
buchmann |
1.19 |
sSpecialCut << " && " << identifier << "_alpha<0.3";
|
1153 |
buchmann |
1.9 |
TCut SpecialCut(sSpecialCut.str().c_str());
|
1154 |
|
|
|
1155 |
|
|
|
1156 |
buchmann |
1.19 |
malpha[i] = allsamples.Draw("malpha"+any2string(i),"mpf",1000,0,2,"MPF","events",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&SpecialCut,mc,luminosity);
|
1157 |
|
|
dalpha[i] = allsamples.Draw("dalpha"+any2string(i),"mpf",1000,0,2,"MPF","events",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&SpecialCut,data,luminosity);
|
1158 |
buchmann |
1.9 |
|
1159 |
|
|
|
1160 |
|
|
float a=dalpha[i]->GetMean();
|
1161 |
|
|
float b=malpha[i]->GetMean();
|
1162 |
|
|
float da=dalpha[i]->GetMeanError();
|
1163 |
|
|
float db=malpha[i]->GetMeanError();
|
1164 |
|
|
float factor = a / b;
|
1165 |
|
|
float error = TMath::Sqrt( (1/(b*b)) * (da*da) + ((a*a)/(b*b))*db*db);
|
1166 |
|
|
|
1167 |
buchmann |
1.26 |
dout << malpha[i]->GetMean() << ";" << malpha[i]->GetMeanError() << ";" << dalpha[i]->GetMean() << ";" << dalpha[i]->GetMeanError() << ";" << malpha[i]->Integral()<<";"<<dalpha[i]->Integral() << ";"<<factor << ";" << error << endl;
|
1168 |
buchmann |
1.19 |
delete malpha[i];
|
1169 |
|
|
delete dalpha[i];
|
1170 |
buchmann |
1.9 |
}
|
1171 |
|
|
|
1172 |
|
|
delete can;
|
1173 |
|
|
|
1174 |
|
|
}
|
1175 |
|
|
|
1176 |
buchmann |
1.19 |
void ScenarioComparison() {
|
1177 |
buchmann |
1.13 |
//very dumb way to do this.
|
1178 |
buchmann |
1.19 |
|
1179 |
buchmann |
1.9 |
TGraphAsymmErrors *gr[5];
|
1180 |
|
|
TF1 *fit[5];
|
1181 |
buchmann |
1.19 |
bool dofit=true;
|
1182 |
buchmann |
1.9 |
|
1183 |
|
|
TCanvas *can = new TCanvas("can","can",500,500);
|
1184 |
|
|
|
1185 |
|
|
TLegend *leg = new TLegend(0.2,0.2,0.5,0.45);
|
1186 |
|
|
leg->SetBorderSize(0);
|
1187 |
|
|
leg->SetFillColor(kWhite);
|
1188 |
|
|
|
1189 |
buchmann |
1.19 |
for(int i=0;i<6;i++) {
|
1190 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors();
|
1191 |
buchmann |
1.19 |
double x[4] = {5,12.5,17.5,25};
|
1192 |
|
|
double dxl[4] = {5,2.5,2.5,5};
|
1193 |
buchmann |
1.9 |
double dxh[4] = {5,2.5,2.5,10};
|
1194 |
|
|
|
1195 |
|
|
string name="";
|
1196 |
|
|
string color="";
|
1197 |
|
|
|
1198 |
|
|
if(i==0) {
|
1199 |
buchmann |
1.19 |
double y[4] = {1.01935,1.01558,0.996438,1.01901};
|
1200 |
|
|
double dyl[4] = {0.0132973,0.0131661,0.017629,0.0319767};
|
1201 |
|
|
double dyh[4] = {0.0132973,0.0131661,0.017629,0.0319767};
|
1202 |
buchmann |
1.9 |
name="30/30";
|
1203 |
|
|
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1204 |
|
|
color="#a01d99";
|
1205 |
|
|
}
|
1206 |
|
|
if(i==1) {
|
1207 |
buchmann |
1.19 |
double y[4] = {1.00577,1.00706,0.991029,0.954098};
|
1208 |
|
|
double dyl[4] = {0.0135575,0.0136548,0.0170778,0.0263919};
|
1209 |
|
|
double dyh[4] = {0.0135575,0.0136548,0.0170778,0.0263919};
|
1210 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1211 |
buchmann |
1.13 |
name="30/15";
|
1212 |
buchmann |
1.9 |
color="#2464bc";
|
1213 |
|
|
}
|
1214 |
|
|
if(i==2) {
|
1215 |
buchmann |
1.19 |
double y[4] = {1.023,1.00648,1.02217,1.03181};
|
1216 |
|
|
double dyl[4] = {0.0157372,0.0187778,0.0261512,0.0422295};
|
1217 |
|
|
double dyh[4] = {0.0157372,0.0187778,0.0261512,0.0422295};
|
1218 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1219 |
|
|
name="15/15";
|
1220 |
|
|
color="#f49230";
|
1221 |
|
|
}
|
1222 |
|
|
if(i==3) {
|
1223 |
buchmann |
1.19 |
double y[4] = {1.02029,1.01338,0.999769,1.00357};
|
1224 |
|
|
double dyl[4] = {0.0129509,0.0120127,0.0160537,0.0268972};
|
1225 |
|
|
double dyh[4] = {0.0129509,0.0120127,0.0160537,0.0268972};
|
1226 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1227 |
buchmann |
1.19 |
name="CHS 30/30";
|
1228 |
buchmann |
1.9 |
color="#c72f3c";
|
1229 |
|
|
}
|
1230 |
|
|
if(i==4) {
|
1231 |
buchmann |
1.19 |
double y[4] = {1.00274,1.01056,0.993214,0.997963};
|
1232 |
|
|
double dyl[4] = {0.0127179,0.0140344,0.0162814,0.0278914};
|
1233 |
|
|
double dyh[4] = {0.0127179,0.0140344,0.0162814,0.0278914};
|
1234 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1235 |
buchmann |
1.19 |
name="CHS 30/15";
|
1236 |
buchmann |
1.9 |
color="#7cb433";
|
1237 |
|
|
}
|
1238 |
buchmann |
1.19 |
if(i==5) {
|
1239 |
|
|
double y[4] = {1.04103,1.03726,1.04649,1.05383};
|
1240 |
|
|
double dyl[4] = {0.0156465,0.0168194,0.0231982,0.0376114};
|
1241 |
|
|
double dyh[4] = {0.0156465,0.0168194,0.0231982,0.0376114};
|
1242 |
|
|
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1243 |
|
|
name="CHS 15/15";
|
1244 |
|
|
color="#DF013A";
|
1245 |
|
|
}
|
1246 |
|
|
|
1247 |
|
|
|
1248 |
buchmann |
1.23 |
gStyle->SetOptFit(0);
|
1249 |
buchmann |
1.9 |
gr[i]->SetTitle();
|
1250 |
|
|
gr[i]->GetXaxis()->SetTitle("N(Vtx)");
|
1251 |
|
|
gr[i]->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
1252 |
|
|
gr[i]->GetXaxis()->CenterTitle();
|
1253 |
|
|
gr[i]->GetYaxis()->CenterTitle();
|
1254 |
|
|
gr[i]->SetName(name.c_str());
|
1255 |
|
|
gr[i]->SetMarkerSize(0.00001);
|
1256 |
|
|
gr[i]->GetYaxis()->SetRangeUser(0.90,1.10);
|
1257 |
|
|
gr[i]->SetLineColor(TColor::GetColor(color.c_str()));
|
1258 |
|
|
gr[i]->SetMarkerColor(TColor::GetColor(color.c_str()));
|
1259 |
|
|
if(dofit) {
|
1260 |
|
|
gr[i]->Fit("pol1");
|
1261 |
|
|
fit[i] = (TF1*)gr[i]->GetFunction("pol1");
|
1262 |
|
|
fit[i]->SetLineColor(TColor::GetColor(color.c_str()));
|
1263 |
|
|
}
|
1264 |
|
|
leg->AddEntry(gr[i],name.c_str(),"l");
|
1265 |
|
|
if(i==0) gr[i]->Draw("AP*");
|
1266 |
|
|
else gr[i]->Draw("P");
|
1267 |
|
|
}
|
1268 |
|
|
leg->Draw();
|
1269 |
|
|
DrawPrelim();
|
1270 |
|
|
|
1271 |
|
|
CompleteSave(can,"ScenarioComparison");
|
1272 |
|
|
delete can;
|
1273 |
|
|
|
1274 |
|
|
}
|
1275 |
|
|
|
1276 |
buchmann |
1.19 |
void ScenarioComparisonInclusive() {
|
1277 |
buchmann |
1.13 |
//dumbest way ever to do this. but ok we only need to do it once.
|
1278 |
buchmann |
1.9 |
TGraphAsymmErrors *gr[5];
|
1279 |
|
|
TF1 *fit[5];
|
1280 |
|
|
bool dofit=true;
|
1281 |
|
|
|
1282 |
|
|
TCanvas *can = new TCanvas("can","can",500,500);
|
1283 |
|
|
|
1284 |
buchmann |
1.19 |
TLegend *leg = new TLegend(0.2,0.2,0.65,0.45);
|
1285 |
buchmann |
1.9 |
leg->SetBorderSize(0);
|
1286 |
|
|
leg->SetFillColor(kWhite);
|
1287 |
|
|
|
1288 |
buchmann |
1.19 |
for(int i=0;i<6;i++) {
|
1289 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors();
|
1290 |
buchmann |
1.19 |
double x[4] = {5,12.5,17.5,25};
|
1291 |
|
|
double dxl[4] = {5,2.5,2.5,5};
|
1292 |
|
|
double dxh[4] = {5,2.5,2.5,5};
|
1293 |
buchmann |
1.9 |
|
1294 |
|
|
string name="";
|
1295 |
|
|
string color="";
|
1296 |
|
|
|
1297 |
|
|
if(i==0) {
|
1298 |
buchmann |
1.19 |
double y[4] = {1.01093,1.01379,1.0147,1.02766};
|
1299 |
|
|
double dyl[4] = {0.00243596,0.00242534,0.00341941,0.00600663};
|
1300 |
|
|
double dyh[4] = {0.00243596,0.00242534,0.00341941,0.00600663};
|
1301 |
buchmann |
1.9 |
name="30/30";
|
1302 |
|
|
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1303 |
|
|
color="#a01d99";
|
1304 |
|
|
}
|
1305 |
|
|
if(i==1) {
|
1306 |
buchmann |
1.19 |
double y[4] = {1.0068,1.00779,0.999692,0.994484};
|
1307 |
|
|
double dyl[4] = {0.00249233,0.00257169,0.00371399,0.00631138};
|
1308 |
|
|
double dyh[4] = {0.00249233,0.00257169,0.00371399,0.00631138};
|
1309 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1310 |
buchmann |
1.13 |
name="30/15";
|
1311 |
buchmann |
1.9 |
color="#2464bc";
|
1312 |
|
|
}
|
1313 |
|
|
if(i==2) {
|
1314 |
buchmann |
1.19 |
double y[4] = {1.01208,1.01991,1.02185,1.03479};
|
1315 |
|
|
double dyl[4] = {0.00366745,0.00400001,0.00584054,0.0104661};
|
1316 |
|
|
double dyh[4] = {0.00366745,0.00400001,0.00584054,0.0104661};
|
1317 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1318 |
|
|
name="15/15";
|
1319 |
|
|
color="#f49230";
|
1320 |
|
|
}
|
1321 |
|
|
if(i==3) {
|
1322 |
buchmann |
1.19 |
double y[4] = {1.01177,1.01568,1.01616,1.03211};
|
1323 |
|
|
double dyl[4] = {0.00217317,0.00203014,0.00276838,0.00465643};
|
1324 |
|
|
double dyh[4] = {0.00217317,0.00203014,0.00276838,0.00465643};
|
1325 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1326 |
buchmann |
1.19 |
name="CHS 30/30";
|
1327 |
buchmann |
1.9 |
color="#c72f3c";
|
1328 |
|
|
}
|
1329 |
|
|
if(i==4) {
|
1330 |
buchmann |
1.19 |
double y[4] = {1.00751,1.00964,1.00804,1.01073};
|
1331 |
|
|
double dyl[4] = {0.00224851,0.00215563,0.0029592,0.00499805};
|
1332 |
|
|
double dyh[4] = {0.00224851,0.00215563,0.0029592,0.00499805};
|
1333 |
buchmann |
1.9 |
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1334 |
buchmann |
1.19 |
name="CHS 30/15";
|
1335 |
buchmann |
1.9 |
color="#7cb433";
|
1336 |
|
|
}
|
1337 |
buchmann |
1.19 |
if(i==5) {
|
1338 |
|
|
double y[4] = {1.01557,1.0318,1.03535,1.06331};
|
1339 |
|
|
double dyl[4] = {0.00300783,0.00302486,0.00421064,0.00739416};
|
1340 |
|
|
double dyh[4] = {0.00300783,0.00302486,0.00421064,0.00739416};
|
1341 |
|
|
gr[i] = new TGraphAsymmErrors(4,x,y,dxl,dxh,dyl,dyh);
|
1342 |
|
|
name="CHS 15/15";
|
1343 |
|
|
color="#DF013A";
|
1344 |
|
|
}
|
1345 |
buchmann |
1.9 |
|
1346 |
buchmann |
1.19 |
gStyle->SetOptFit(0);
|
1347 |
buchmann |
1.9 |
gr[i]->SetTitle();
|
1348 |
|
|
gr[i]->GetXaxis()->SetTitle("N(Vtx)");
|
1349 |
|
|
gr[i]->GetYaxis()->SetTitle("<MPF>_{data}/<MPF>_{mc}");
|
1350 |
|
|
gr[i]->GetXaxis()->CenterTitle();
|
1351 |
|
|
gr[i]->GetYaxis()->CenterTitle();
|
1352 |
|
|
gr[i]->SetName(name.c_str());
|
1353 |
|
|
gr[i]->SetMarkerSize(0.00001);
|
1354 |
|
|
gr[i]->GetYaxis()->SetRangeUser(0.90,1.10);
|
1355 |
|
|
gr[i]->SetLineColor(TColor::GetColor(color.c_str()));
|
1356 |
|
|
gr[i]->SetMarkerColor(TColor::GetColor(color.c_str()));
|
1357 |
|
|
if(dofit) {
|
1358 |
|
|
gr[i]->Fit("pol1");
|
1359 |
|
|
fit[i] = (TF1*)gr[i]->GetFunction("pol1");
|
1360 |
|
|
fit[i]->SetLineColor(TColor::GetColor(color.c_str()));
|
1361 |
|
|
}
|
1362 |
buchmann |
1.19 |
|
1363 |
|
|
stringstream nameplus;
|
1364 |
|
|
nameplus << name << " (slope: " << std::setprecision(3) << fit[i]->GetParameter(1) << ")";
|
1365 |
|
|
|
1366 |
|
|
leg->AddEntry(gr[i],nameplus.str().c_str(),"l");
|
1367 |
buchmann |
1.9 |
if(i==0) gr[i]->Draw("AP*");
|
1368 |
|
|
else gr[i]->Draw("P");
|
1369 |
|
|
}
|
1370 |
|
|
leg->Draw();
|
1371 |
|
|
DrawPrelim();
|
1372 |
|
|
|
1373 |
|
|
CompleteSave(can,"ScenarioComparisonInclusive");
|
1374 |
|
|
delete can;
|
1375 |
|
|
|
1376 |
|
|
}
|
1377 |
buchmann |
1.2 |
|
1378 |
buchmann |
1.19 |
void compare_selection(string identifier) {
|
1379 |
buchmann |
1.7 |
bool recognized_scenario=false;
|
1380 |
|
|
|
1381 |
buchmann |
1.26 |
dout << "Running with identifier " << identifier << endl;
|
1382 |
buchmann |
1.19 |
if(identifier=="Zb30") {
|
1383 |
|
|
LeadingB=TCut ("Zb30_bTagProbCSVBP[0]>0.898");
|
1384 |
|
|
EtaB=TCut("abs(Zb30_pfJetGoodEta[0])<1.3");
|
1385 |
|
|
PhiZcut=TCut("abs(Zb30_pfJetDphiZ[0])>2.7");
|
1386 |
|
|
recognized_scenario=true;
|
1387 |
|
|
}
|
1388 |
buchmann |
1.9 |
if(identifier=="Zb3010") {
|
1389 |
|
|
LeadingB=TCut ("Zb3010_bTagProbCSVBP[0]>0.898");
|
1390 |
|
|
EtaB=TCut("abs(Zb3010_pfJetGoodEta[0])<1.3");
|
1391 |
|
|
PhiZcut=TCut("abs(Zb3010_pfJetDphiZ[0])>2.7");
|
1392 |
|
|
recognized_scenario=true;
|
1393 |
|
|
}
|
1394 |
|
|
|
1395 |
buchmann |
1.19 |
if(identifier=="ZbCHS3010") {
|
1396 |
|
|
LeadingB=TCut ("ZbCHS1510_bTagProbCSVBP[0]>0.898");
|
1397 |
|
|
EtaB=TCut("abs(ZbCHS1510_pfJetGoodEta[0])<1.3");
|
1398 |
|
|
PhiZcut=TCut("abs(ZbCHS1510_pfJetDphiZ[0])>2.7");
|
1399 |
buchmann |
1.7 |
recognized_scenario=true;
|
1400 |
|
|
}
|
1401 |
|
|
|
1402 |
buchmann |
1.9 |
if(identifier=="Zb40") {
|
1403 |
|
|
LeadingB=TCut ("Zb40_bTagProbCSVBP[0]>0.898");
|
1404 |
|
|
EtaB=TCut("abs(Zb40_pfJetGoodEta[0])<1.3");
|
1405 |
|
|
PhiZcut=TCut("abs(Zb40_pfJetDphiZ[0])>2.7");
|
1406 |
|
|
recognized_scenario=true;
|
1407 |
|
|
}
|
1408 |
|
|
|
1409 |
buchmann |
1.19 |
if(identifier=="ZbCHS301030") {
|
1410 |
|
|
LeadingB=TCut ("ZbCHS301030_bTagProbCSVBP[0]>0.898");
|
1411 |
|
|
EtaB=TCut("abs(ZbCHS301030_pfJetGoodEta[0])<1.3");
|
1412 |
|
|
PhiZcut=TCut("abs(ZbCHS301030_pfJetDphiZ[0])>2.7");
|
1413 |
buchmann |
1.7 |
recognized_scenario=true;
|
1414 |
|
|
}
|
1415 |
|
|
|
1416 |
|
|
if(identifier=="Zb1530") {
|
1417 |
buchmann |
1.9 |
LeadingB=TCut ("Zb1530_bTagProbCSVBP[0]>0.898");
|
1418 |
buchmann |
1.7 |
EtaB=TCut("abs(Zb1530_pfJetGoodEta[0])<1.3");
|
1419 |
|
|
PhiZcut=TCut("abs(Zb1530_pfJetDphiZ[0])>2.7");
|
1420 |
|
|
recognized_scenario=true;
|
1421 |
|
|
}
|
1422 |
|
|
|
1423 |
buchmann |
1.19 |
if(identifier=="ZbCHS301010") {
|
1424 |
|
|
LeadingB=TCut ("ZbCHS301010_bTagProbCSVBP[0]>0.898");
|
1425 |
|
|
EtaB=TCut("abs(ZbCHS301010_pfJetGoodEta[0])<1.3");
|
1426 |
|
|
PhiZcut=TCut("abs(ZbCHS301010_pfJetDphiZ[0])>2.7");
|
1427 |
buchmann |
1.9 |
recognized_scenario=true;
|
1428 |
|
|
}
|
1429 |
|
|
|
1430 |
|
|
if(identifier=="Zb1510") {
|
1431 |
|
|
LeadingB=TCut ("Zb1510_bTagProbCSVBP[0]>0.898");
|
1432 |
|
|
EtaB=TCut("abs(Zb1510_pfJetGoodEta[0])<1.3");
|
1433 |
|
|
PhiZcut=TCut("abs(Zb1510_pfJetDphiZ[0])>2.7");
|
1434 |
|
|
recognized_scenario=true;
|
1435 |
|
|
}
|
1436 |
|
|
|
1437 |
buchmann |
1.19 |
if(identifier=="ZbCHS301010") {
|
1438 |
|
|
LeadingB=TCut ("ZbCHS301010_bTagProbCSVBP[0]>0.898");
|
1439 |
|
|
EtaB=TCut("abs(ZbCHS301010_pfJetGoodEta[0])<1.3");
|
1440 |
|
|
PhiZcut=TCut("abs(ZbCHS301010_pfJetDphiZ[0])>2.7");
|
1441 |
buchmann |
1.9 |
recognized_scenario=true;
|
1442 |
|
|
}
|
1443 |
|
|
|
1444 |
|
|
if(identifier=="ZbMikko") {
|
1445 |
|
|
LeadingB=TCut ("ZbMikko_bTagProbCSVBP[0]>0.898 && ZbMikko__IsClean");
|
1446 |
|
|
EtaB=TCut("abs(ZbMikko_pfJetGoodEta[0])<1.3 && ZbMikko__IsClean");
|
1447 |
|
|
PhiZcut=TCut("abs(ZbMikko_pfJetDphiZ[0])>2.7 && ZbMikko__IsClean");
|
1448 |
buchmann |
1.7 |
recognized_scenario=true;
|
1449 |
|
|
}
|
1450 |
|
|
|
1451 |
buchmann |
1.19 |
if(identifier=="ZbCHS3010_SecEta3") {
|
1452 |
|
|
LeadingB=TCut ("ZbCHS3010_SecEta3_bTagProbCSVBP[0]>0.898");
|
1453 |
|
|
EtaB=TCut("abs(ZbCHS3010_SecEta3_pfJetGoodEta[0])<1.3");
|
1454 |
|
|
PhiZcut=TCut("abs(ZbCHS3010_SecEta3_pfJetDphiZ[0])>2.7");
|
1455 |
buchmann |
1.7 |
recognized_scenario=true;
|
1456 |
|
|
}
|
1457 |
|
|
|
1458 |
buchmann |
1.19 |
if(identifier=="ZbCHS3010_SecEta5") {
|
1459 |
|
|
LeadingB=TCut ("ZbCHS3010_SecEta5_bTagProbCSVBP[0]>0.898");
|
1460 |
|
|
EtaB=TCut("abs(ZbCHS3010_SecEta5_pfJetGoodEta[0])<1.3");
|
1461 |
|
|
PhiZcut=TCut("abs(ZbCHS3010_SecEta5_pfJetDphiZ[0])>2.7");
|
1462 |
buchmann |
1.7 |
recognized_scenario=true;
|
1463 |
|
|
}
|
1464 |
|
|
|
1465 |
buchmann |
1.19 |
if(identifier=="ZbCHS3010_p5Clean") {
|
1466 |
|
|
LeadingB=TCut ("ZbCHS3010_p5Clean_bTagProbCSVBP[0]>0.898 && ZbCHS3010_p5Clean_IsClean");
|
1467 |
|
|
EtaB=TCut("abs(ZbCHS3010_p5Clean_pfJetGoodEta[0])<1.3 && ZbCHS3010_p5Clean_IsClean");
|
1468 |
|
|
PhiZcut=TCut("abs(ZbCHS3010_p5Clean_pfJetDphiZ[0])>2.7 && ZbCHS3010_p5Clean_IsClean");
|
1469 |
buchmann |
1.7 |
recognized_scenario=true;
|
1470 |
|
|
}
|
1471 |
|
|
|
1472 |
buchmann |
1.19 |
if(identifier=="ZbCHS3010") {
|
1473 |
|
|
LeadingB=TCut ("ZbCHS3010_bTagProbCSVBP[0]>0.898");
|
1474 |
|
|
EtaB=TCut("abs(ZbCHS3010_pfJetGoodEta[0])<1.3");
|
1475 |
|
|
PhiZcut=TCut("abs(ZbCHS3010_pfJetDphiZ[0])>2.7");
|
1476 |
|
|
recognized_scenario=true;
|
1477 |
|
|
}
|
1478 |
|
|
if(identifier=="ZbCHS3010") {
|
1479 |
|
|
LeadingB=TCut ("ZbCHS3010_bTagProbCSVBP[0]>0.898");
|
1480 |
|
|
EtaB=TCut("abs(ZbCHS3010_pfJetGoodEta[0])<1.3");
|
1481 |
|
|
PhiZcut=TCut("abs(ZbCHS3010_pfJetDphiZ[0])>2.7");
|
1482 |
|
|
recognized_scenario=true;
|
1483 |
|
|
}
|
1484 |
|
|
if(identifier=="ZbCHS30") {
|
1485 |
|
|
LeadingB=TCut ("ZbCHS30_bTagProbCSVBP[0]>0.898");
|
1486 |
|
|
EtaB=TCut("abs(ZbCHS30_pfJetGoodEta[0])<1.3");
|
1487 |
|
|
PhiZcut=TCut("abs(ZbCHS30_pfJetDphiZ[0])>2.7");
|
1488 |
buchmann |
1.7 |
recognized_scenario=true;
|
1489 |
|
|
}
|
1490 |
|
|
|
1491 |
|
|
assert(recognized_scenario);
|
1492 |
|
|
|
1493 |
buchmann |
1.26 |
dout << "Cuts: " << endl;
|
1494 |
|
|
dout << " " << (const char*) LeadingB << endl;
|
1495 |
|
|
dout << " " << (const char*) EtaB << endl;
|
1496 |
|
|
dout << " " << (const char*) PhiZcut << endl;
|
1497 |
buchmann |
1.7 |
|
1498 |
buchmann |
1.26 |
dout << endl << endl;
|
1499 |
buchmann |
1.19 |
|
1500 |
|
|
// ScenarioComparison();
|
1501 |
|
|
// ScenarioComparisonInclusive();
|
1502 |
|
|
|
1503 |
|
|
// DoPUStudy(identifier);
|
1504 |
|
|
// SpecialCutFlow(identifier);
|
1505 |
buchmann |
1.7 |
|
1506 |
buchmann |
1.19 |
// draw_kin_variable("pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000",17000,30,200,"Z p_{T}","Official/"+identifier+"/Zpt__"+identifier,1);
|
1507 |
|
|
// draw_kin_variable(identifier+"_pfJetGoodPt[0]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000",40,0,200,"Leading Jet Pt (B)","Official/"+identifier+"/LeadingJetPt__"+identifier,1);
|
1508 |
|
|
// draw_kin_variable(identifier+"_pfJetGoodPt[1]",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000",40,0,200,"Sub-Leading Jet Pt [GeV]","Official/"+identifier+"/Jet2Pt__"+identifier,1);
|
1509 |
|
|
// draw_kin_variable(identifier+"_pfJetGoodPt[1]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&"pt>30&&pt<1000",20,0,2,"p_{T}^{J2} / p_{T}^{Z}","Official/"+identifier+"/SubLeadingJetPt_Over_ZPt__"+identifier,1);
|
1510 |
buchmann |
1.9 |
draw_kin_variable(identifier+"_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>30&&pt<50"),20,0,2,"#alpha","Official/"+identifier+"/alpha_pt_30_to_50__"+identifier,1);
|
1511 |
|
|
draw_kin_variable(identifier+"_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>50&&pt<75"),20,0,2,"#alpha","Official/"+identifier+"/alpha_50_to_75__"+identifier,1);
|
1512 |
|
|
draw_kin_variable(identifier+"_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>75&&pt<125"),20,0,2,"#alpha","Official/"+identifier+"/alpha_pt_75_to_125__"+identifier,1);
|
1513 |
|
|
draw_kin_variable(identifier+"_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut("pt>125&&pt<1000"),20,0,2,"#alpha","Official/"+identifier+"/alpha_pt_125_to_1000__"+identifier,1);
|
1514 |
|
|
draw_kin_variable(identifier+"_alpha",ZplusBsel&&LeadingB&&EtaB&&PhiZcut,20,0,2,"#alpha","Official/"+identifier+"/alpha_full__"+identifier,1);
|
1515 |
buchmann |
1.19 |
draw_kin_variable(identifier+"_pfBJetDphiZ[0]",ZplusBsel&&LeadingB&&"pt>30&&pt<1000&&pfBJetDphiZ[0]>0",30,0,3.2,"#delta#phi (Z,b lead)","Official/"+identifier+"/DeltaPhiZBlead__"+identifier,0);
|
1516 |
buchmann |
1.7 |
|
1517 |
buchmann |
1.19 |
draw_kin_variable("mpf",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.3").c_str()),20,0,2,"Z+b MPF","Official/"+identifier+"/mpf_alpha_smaller_0p3___"+identifier,0,"#alpha<0.3, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
1518 |
|
|
draw_kin_variable(identifier+"_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.3").c_str()),20,0,2,"p_{T} b-jet / p_{T} Z","Official/"+identifier+"/ptb_over_ptz___alpha_smaller_0p3______"+identifier,0,"#alpha<0.3, 30 GeV < p_{T}^{Z} < 1000 GeV");
|
1519 |
|
|
draw_kin_variable(identifier+"_pfJetGoodPt[0]/pt",ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<50&&"+identifier+"_alpha<0.3").c_str()),20,0,2,"p_{T} b-jet / p_{T} Z","Official/"+identifier+"/ptb_over_ptz___alpha_smaller_0p3___pt3050___"+identifier,0,"#alpha<0.3, 30 GeV < p_{T}^{Z} < 1000 GeV}{30<p_{T}^{Z}<50 GeV}");
|
1520 |
buchmann |
1.7 |
|
1521 |
|
|
}
|
1522 |
|
|
|
1523 |
buchmann |
1.14 |
void GetNumberEventsInsideOutsideAlphaWindow(TCut specialcut, string title) {
|
1524 |
buchmann |
1.13 |
|
1525 |
buchmann |
1.19 |
// TCut cut = ZplusBsel&&LeadingB&&PhiZcut&&specialcut&&TCut("ZbCHS3010_alpha<0.3");
|
1526 |
buchmann |
1.14 |
TCut cut = specialcut;
|
1527 |
|
|
TCut in = EtaB;
|
1528 |
buchmann |
1.19 |
TCut out = TCut("abs(ZbCHS3010_pfJetGoodEta[0])>1.3");
|
1529 |
buchmann |
1.13 |
|
1530 |
|
|
TH1F *data_IN = allsamples.Draw("data_IN", "mll",1,0,150, "nothing [GeV]", "events", cut&&in, data,luminosity);
|
1531 |
|
|
TH1F *data_OUT = allsamples.Draw("data_OUT", "mll",1,0,150, "nothing [GeV]", "events", cut&&out,data,luminosity);
|
1532 |
|
|
TH1F *mc_IN = allsamples.Draw("mc_IN", "mll",1,0,150, "nothing [GeV]", "events", cut&&in, mc ,luminosity);
|
1533 |
|
|
TH1F *mc_OUT = allsamples.Draw("mc_OUT", "mll",1,0,150, "nothing [GeV]", "events", cut&&out,mc ,luminosity);
|
1534 |
|
|
|
1535 |
buchmann |
1.14 |
dout << title << " : " << endl;
|
1536 |
buchmann |
1.13 |
dout << " Data: In " << data_IN->Integral() << " vs out " << data_OUT->Integral() << endl;
|
1537 |
|
|
dout << " MC : In " << mc_IN->Integral() << " vs out " << mc_OUT->Integral() << endl;
|
1538 |
buchmann |
1.14 |
dout << " ratio in : " << data_IN->Integral()/mc_IN->Integral() << " +/- " << (data_IN->Integral()/mc_IN->Integral()) * sqrt(1.0/mc_IN->Integral()+ 1.0/data_IN->Integral()) << endl;
|
1539 |
|
|
dout << " ratio out : " << data_OUT->Integral()/mc_OUT->Integral() << " +/- " << (data_OUT->Integral()/mc_OUT->Integral()) * sqrt(1.0/mc_OUT->Integral()+ 1.0/data_OUT->Integral()) << endl;
|
1540 |
|
|
|
1541 |
|
|
delete data_IN;
|
1542 |
|
|
delete data_OUT;
|
1543 |
|
|
delete mc_IN;
|
1544 |
|
|
delete mc_OUT;
|
1545 |
buchmann |
1.13 |
}
|
1546 |
|
|
|
1547 |
buchmann |
1.15 |
void TEST_GetNumberEventsInsideOutsideAlphaWindow() {
|
1548 |
buchmann |
1.14 |
TCanvas *ca = new TCanvas("ca","ca");
|
1549 |
|
|
// GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2&&id1==0"), "ee");
|
1550 |
|
|
// GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2&&id1==1"), "mm");
|
1551 |
|
|
// GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2"), "ee/mm");
|
1552 |
|
|
|
1553 |
buchmann |
1.26 |
dout << "BASE SELECTION" << endl;
|
1554 |
buchmann |
1.14 |
GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2&&id1==0"), "ee");
|
1555 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2&&id1==1"), "mm");
|
1556 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(TCut("id1==id2"), "ee/mm");
|
1557 |
|
|
|
1558 |
buchmann |
1.26 |
dout << "BASE SELECTION: Z+b" << endl;
|
1559 |
buchmann |
1.14 |
GetNumberEventsInsideOutsideAlphaWindow(ZplusBsel&&TCut("id1==id2&&id1==0"), "ee");
|
1560 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(ZplusBsel&&TCut("id1==id2&&id1==1"), "mm");
|
1561 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(ZplusBsel&&TCut("id1==id2"), "ee/mm");
|
1562 |
|
|
|
1563 |
buchmann |
1.26 |
dout << "Leading B" << endl;
|
1564 |
buchmann |
1.14 |
GetNumberEventsInsideOutsideAlphaWindow(LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==0"), "ee");
|
1565 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==1"), "mm");
|
1566 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(LeadingB&&ZplusBsel&&TCut("id1==id2"), "ee/mm");
|
1567 |
|
|
|
1568 |
buchmann |
1.26 |
dout << "PhiZcut" << endl;
|
1569 |
buchmann |
1.14 |
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==0"), "ee");
|
1570 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==1"), "mm");
|
1571 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2"), "ee/mm");
|
1572 |
|
|
|
1573 |
buchmann |
1.26 |
dout << "alpha cut" << endl;
|
1574 |
buchmann |
1.19 |
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==0")&&TCut("ZbCHS3010_alpha<0.3"), "ee");
|
1575 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2&&id1==1")&&TCut("ZbCHS3010_alpha<0.3"), "mm");
|
1576 |
|
|
GetNumberEventsInsideOutsideAlphaWindow(PhiZcut&&LeadingB&&ZplusBsel&&TCut("id1==id2")&&TCut("ZbCHS3010_alpha<0.3"), "ee/mm");
|
1577 |
buchmann |
1.14 |
|
1578 |
|
|
delete ca;
|
1579 |
|
|
|
1580 |
|
|
|
1581 |
|
|
}
|
1582 |
|
|
|
1583 |
|
|
|
1584 |
buchmann |
1.23 |
void MetSpectrumDepletionIllustration(int isdata) {
|
1585 |
|
|
|
1586 |
|
|
TCanvas *can = new TCanvas("can","can");
|
1587 |
|
|
TCut basecut(ZplusBsel&&LeadingB&&EtaB&&PhiZcut);
|
1588 |
|
|
|
1589 |
|
|
cutWeight=STDWEIGHT*TCut("ZbCHS3010_BTagWgtTUp*(1.0)*(ZbCHS3010_bTagProbCSVBP[0]>0.898)");
|
1590 |
|
|
TH1F *standard = allsamples.Draw("standard","met[1]",80,0,400, "MET [GeV]", "events", basecut,isdata,luminosity);
|
1591 |
|
|
|
1592 |
|
|
cutWeight=STDWEIGHT*TCut("ZbCHS3010_BTagWgtTUp*(1.0*softMuon)*(ZbCHS3010_bTagProbCSVBP[0]>0.898)");
|
1593 |
|
|
TH1F *Neutrinos = allsamples.Draw("Neutrinos","met[1]",80,0,400, "MET [GeV]", "events", basecut,isdata,luminosity);
|
1594 |
|
|
|
1595 |
|
|
cutWeight=STDWEIGHT*TCut("ZbCHS3010_BTagWgtTUp*(1.0*(1.0-softMuon))*(ZbCHS3010_bTagProbCSVBP[0]>0.898)");
|
1596 |
|
|
TH1F *NoNeutrinos = allsamples.Draw("NoNeutrinos","met[1]",80,0,400, "MET [GeV]", "events", basecut,isdata,luminosity);
|
1597 |
|
|
|
1598 |
|
|
standard->Scale(1.0/standard->Integral());
|
1599 |
|
|
Neutrinos->Scale(1.0/Neutrinos->Integral());
|
1600 |
|
|
NoNeutrinos->Scale(1.0/NoNeutrinos->Integral());
|
1601 |
|
|
|
1602 |
|
|
Neutrinos->SetLineColor(kGreen);
|
1603 |
|
|
NoNeutrinos->SetLineColor(kRed);
|
1604 |
|
|
|
1605 |
|
|
can->SetLogy(1);
|
1606 |
|
|
TLegend *leg = make_legend();
|
1607 |
|
|
leg->AddEntry(standard,"Standard sample","ep");
|
1608 |
|
|
leg->AddEntry(Neutrinos,"#nu enriched sample","l");
|
1609 |
|
|
leg->AddEntry(NoNeutrinos,"#nu depleted sample","l");
|
1610 |
|
|
leg->SetX1(0.9*leg->GetX1());
|
1611 |
|
|
standard->Draw("e1");
|
1612 |
|
|
Neutrinos->Draw("histo,same");
|
1613 |
|
|
NoNeutrinos->Draw("histo,same");
|
1614 |
|
|
if(isdata==data) leg->SetHeader("Data:");
|
1615 |
|
|
else leg->SetHeader("MC:");
|
1616 |
|
|
leg->Draw();
|
1617 |
|
|
DrawPrelim();
|
1618 |
|
|
|
1619 |
|
|
if(isdata==data) CompleteSave(can,"NeutrinoMetSpectrum__Data");
|
1620 |
|
|
else CompleteSave(can,"NeutrinoMetSpectrum__MC");
|
1621 |
|
|
delete standard;
|
1622 |
|
|
delete Neutrinos;
|
1623 |
|
|
delete NoNeutrinos;
|
1624 |
|
|
delete can;
|
1625 |
|
|
CleanLegends();
|
1626 |
|
|
}
|
1627 |
buchmann |
1.13 |
|
1628 |
buchmann |
1.28 |
string PrintVector(vector<float> Systematics) {
|
1629 |
|
|
stringstream fullanswer;
|
1630 |
|
|
fullanswer << " [ ";
|
1631 |
|
|
if(Systematics.size()>0) fullanswer << Systematics[0];
|
1632 |
|
|
for(unsigned int is=1;is<Systematics.size();is++) fullanswer << " , " << Systematics[is];
|
1633 |
|
|
fullanswer << " ] ";
|
1634 |
|
|
return fullanswer.str();
|
1635 |
|
|
}
|
1636 |
|
|
|
1637 |
|
|
|
1638 |
buchmann |
1.15 |
void do_basic_ZB_analysis(bool DoCompleteAnalysis) {
|
1639 |
buchmann |
1.19 |
STDWEIGHT=TCut(cutWeight);
|
1640 |
|
|
cutWeight=TCut(STDWEIGHT*TCut("ZbCHS3010_BTagWgtT"));
|
1641 |
buchmann |
1.26 |
dout << "The lepton requirement is " << (const char*) leptoncut << endl;
|
1642 |
buchmann |
1.19 |
bool doquick=false;
|
1643 |
buchmann |
1.9 |
|
1644 |
buchmann |
1.19 |
TCanvas *zbcanvas = new TCanvas("zbcanvas","zbcanvas");
|
1645 |
buchmann |
1.1 |
|
1646 |
buchmann |
1.23 |
|
1647 |
buchmann |
1.25 |
// MetSpectrumDepletionIllustration(data);
|
1648 |
|
|
// MetSpectrumDepletionIllustration(mc);
|
1649 |
buchmann |
1.23 |
|
1650 |
buchmann |
1.19 |
// compare_selection("ZbCHS3010_p5Clean");
|
1651 |
|
|
// compare_selection("ZbCHS3010");
|
1652 |
|
|
// compare_selection("Zb30");
|
1653 |
|
|
// compare_selection("Zb3010");
|
1654 |
|
|
// compare_selection("Zb1510");
|
1655 |
|
|
// compare_selection("ZbCHS30");
|
1656 |
|
|
// compare_selection("ZbCHS3010");
|
1657 |
|
|
// compare_selection("ZbCHS3010");
|
1658 |
|
|
// compare_selection("ZbCHS301010");
|
1659 |
|
|
// compare_selection("ZbCHS3010_SecEta3");
|
1660 |
|
|
// compare_selection("ZbCHS3010_SecEta5");
|
1661 |
|
|
// compare_selection("Zb1510");
|
1662 |
|
|
// compare_selection("ZbCHS301010");
|
1663 |
|
|
// compare_selection("ZbMikko");
|
1664 |
|
|
// compare_selection("ZbCHS3010");
|
1665 |
|
|
// compare_selection("Zb40");
|
1666 |
buchmann |
1.8 |
|
1667 |
buchmann |
1.11 |
if(!doquick) {
|
1668 |
buchmann |
1.25 |
// draw_kin_variable("mll","",28,60.0,200.0,"m_{ll}","mll",1,"");//nice and quick test to see if the normalization is ok (i.e. all data is processed etc.)
|
1669 |
|
|
// print_all_b_yields();
|
1670 |
buchmann |
1.22 |
// draw_mpf_vars();
|
1671 |
buchmann |
1.25 |
// DrawEvilCutFlow();
|
1672 |
buchmann |
1.11 |
|
1673 |
buchmann |
1.22 |
// draw_Zb_kin_vars();
|
1674 |
buchmann |
1.11 |
|
1675 |
|
|
}
|
1676 |
buchmann |
1.7 |
|
1677 |
buchmann |
1.14 |
// GetNumberEventsInsideOutsideAlphaWindow();
|
1678 |
buchmann |
1.15 |
|
1679 |
|
|
if(DoCompleteAnalysis) {
|
1680 |
|
|
/* need to run the following scenarios:
|
1681 |
|
|
* - normal
|
1682 |
|
|
* - inclusive
|
1683 |
|
|
* - medium WP
|
1684 |
|
|
* - alpha up
|
1685 |
|
|
* - alpha down
|
1686 |
|
|
*/
|
1687 |
|
|
|
1688 |
buchmann |
1.19 |
bool fast=true;bool slow=false;//don't change these
|
1689 |
buchmann |
1.16 |
|
1690 |
buchmann |
1.26 |
ZbResultContainer inclusive = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","inclusive",TCut("mll>0"),TCut("1.0"),0.3);
|
1691 |
buchmann |
1.19 |
ZbResultContainer Reference = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1692 |
buchmann |
1.26 |
|
1693 |
buchmann |
1.20 |
|
1694 |
|
|
ZbResultContainer NeutrinoQ = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","NeutrinoQ",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtTUp*(1.0*softMuon)"),0.3);
|
1695 |
|
|
ZbResultContainer ANeutrinoQ = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","ANeutrinoQ",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtTUp*(1.0*(1.0-softMuon))"),0.3);
|
1696 |
|
|
|
1697 |
buchmann |
1.19 |
ZbResultContainer effmistagUp = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","effmistagUp",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtTUp"),0.3);
|
1698 |
|
|
ZbResultContainer effmistagDown = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","effmistagDown",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtTDown"),0.3);
|
1699 |
|
|
ZbResultContainer medium = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","medium",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.679"),TCut("ZbCHS3010_BTagWgtM"),0.3);
|
1700 |
|
|
ZbResultContainer loose = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","loose",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.244"),TCut("ZbCHS3010_BTagWgtL"),0.3);
|
1701 |
|
|
ZbResultContainer AlphaUp = new_data_mc_agreement_2d(fast,"ZbCHS3010_alphaUp","AlphaUp",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1702 |
|
|
ZbResultContainer AlphaDown = new_data_mc_agreement_2d(fast,"ZbCHS3010_alphaDown","AlphaDown",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1703 |
|
|
|
1704 |
buchmann |
1.20 |
ZbResultContainer L5inclusive = new_data_mc_agreement_2d(fast,"ZbCHS3010_alphaL5","L5inclusive",TCut("mll>0"),TCut("1.0"),0.3);
|
1705 |
|
|
ZbResultContainer L5Reference = new_data_mc_agreement_2d(fast,"ZbCHS3010_alphaL5","L5reference",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1706 |
|
|
|
1707 |
|
|
ZbResultContainer AlphaThresholdVariationDown10 = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationDown10", TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"), TCut("ZbCHS3010_BTagWgtT"),0.3-0.1*0.3);
|
1708 |
|
|
ZbResultContainer AlphaThresholdVariationUp10 = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationUp10", TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"), TCut("ZbCHS3010_BTagWgtT"),0.3+0.1*0.3);
|
1709 |
|
|
ZbResultContainer AlphaThresholdVariationDown30 = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationDown30", TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"), TCut("ZbCHS3010_BTagWgtT"),0.3-0.3*0.3);
|
1710 |
|
|
ZbResultContainer AlphaThresholdVariationUp30 = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationUp30", TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"), TCut("ZbCHS3010_BTagWgtT"),0.3+0.3*0.3);
|
1711 |
|
|
ZbResultContainer AlphaThresholdVariationDown10inc = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationDown10inc",TCut("mll>0"), TCut("1.0"),0.3-0.1*0.3);
|
1712 |
|
|
ZbResultContainer AlphaThresholdVariationUp10inc = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationUp10inc", TCut("mll>0"), TCut("1.0"),0.3+0.1*0.3);
|
1713 |
|
|
ZbResultContainer AlphaThresholdVariationDown30inc = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationDown30inc",TCut("mll>0"), TCut("1.0"),0.3-0.3*0.3);
|
1714 |
|
|
ZbResultContainer AlphaThresholdVariationUp30inc = new_data_mc_agreement_2d(fast,"ZbCHS3010_alpha","AlphaThresholdVariationUp30inc", TCut("mll>0"), TCut("1.0"),0.3+0.3*0.3);
|
1715 |
buchmann |
1.28 |
|
1716 |
|
|
|
1717 |
|
|
ZbResultContainer OnlyOneJet = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898&&ZbCHS3010_pfJetGoodNum==1"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1718 |
|
|
ZbResultContainer MultipleJets = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898&&ZbCHS3010_pfJetGoodNum>1"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1719 |
|
|
|
1720 |
|
|
ZbResultContainer OnlyOneJetinc = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_pfJetGoodNum==1"),TCut("1.0"),0.3);
|
1721 |
|
|
ZbResultContainer MultipleJetsinc = new_data_mc_agreement_2d(slow,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_pfJetGoodNum>1"),TCut("1.0"),0.3);
|
1722 |
buchmann |
1.19 |
|
1723 |
buchmann |
1.16 |
//and now let's compute some systematics!
|
1724 |
|
|
//1 alpha variation
|
1725 |
|
|
float SysMPF_Alpha_down = Reference.MPF_Result_FaceValue.getValue()-AlphaDown.MPF_Result_FaceValue.getValue();
|
1726 |
|
|
float SysMPF_Alpha_up = Reference.MPF_Result_FaceValue.getValue()-AlphaUp.MPF_Result_FaceValue.getValue();
|
1727 |
|
|
|
1728 |
buchmann |
1.28 |
vector<float> SysMPF_Alpha_down_Bins;
|
1729 |
|
|
vector<float> SysMPF_Alpha_up_Bins;
|
1730 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_Alpha_down_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-AlphaDown.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1731 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_Alpha_up_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-AlphaUp.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1732 |
|
|
|
1733 |
|
|
|
1734 |
buchmann |
1.16 |
//2 btagging efficiency/mistag correction
|
1735 |
|
|
float SysMPF_EFF_down = Reference.MPF_Result_FaceValue.getValue()-effmistagDown.MPF_Result_FaceValue.getValue();
|
1736 |
|
|
float SysMPF_EFF_up = Reference.MPF_Result_FaceValue.getValue()-effmistagUp.MPF_Result_FaceValue.getValue();
|
1737 |
|
|
|
1738 |
buchmann |
1.28 |
vector<float> SysMPF_EFF_down_Bins;
|
1739 |
|
|
vector<float> SysMPF_EFF_up_Bins;
|
1740 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_EFF_down_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-effmistagDown.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1741 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_EFF_up_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-effmistagUp.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1742 |
|
|
|
1743 |
buchmann |
1.20 |
//3 Presence of soft muons (->neutrino question)
|
1744 |
|
|
float SysMPF_Neutrino_up = Reference.MPF_Result_FaceValue.getValue()-NeutrinoQ.MPF_Result_FaceValue.getValue();
|
1745 |
|
|
float SysMPF_Neutrino_down = Reference.MPF_Result_FaceValue.getValue()-ANeutrinoQ.MPF_Result_FaceValue.getValue();
|
1746 |
|
|
|
1747 |
buchmann |
1.28 |
vector<float> SysMPF_Neutrino_up_Bins;
|
1748 |
|
|
vector<float> SysMPF_Neutrino_down_Bins;
|
1749 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_Neutrino_up_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-NeutrinoQ.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1750 |
|
|
for(unsigned int iFV=0;iFV<Reference.MPF_Result_FaceValue_Bins.size();iFV++) SysMPF_Neutrino_down_Bins.push_back(Reference.MPF_Result_FaceValue_Bins[iFV].getValue()-ANeutrinoQ.MPF_Result_FaceValue_Bins[iFV].getValue());
|
1751 |
|
|
|
1752 |
|
|
|
1753 |
buchmann |
1.20 |
//4 purity
|
1754 |
buchmann |
1.16 |
zbcanvas->cd();
|
1755 |
buchmann |
1.17 |
gStyle->SetOptFit(0);
|
1756 |
buchmann |
1.16 |
write_info(__FUNCTION__,"Don't know the exact purity at the moment, still needs to be determined!");
|
1757 |
buchmann |
1.17 |
TH1F *purityhisto = new TH1F("purityhisto","purityhisto",1,0,1);
|
1758 |
|
|
purityhisto->GetXaxis()->SetTitle("Purity");
|
1759 |
|
|
purityhisto->GetYaxis()->SetTitle("C_{abs}");
|
1760 |
|
|
purityhisto->GetXaxis()->CenterTitle();
|
1761 |
|
|
purityhisto->GetYaxis()->CenterTitle();
|
1762 |
|
|
|
1763 |
buchmann |
1.16 |
TGraphErrors *gSysMPF_Purity = new TGraphErrors();
|
1764 |
buchmann |
1.20 |
|
1765 |
|
|
gSysMPF_Purity->SetPoint(0,PurityInclusive,inclusive.MPF_Result_FaceValue.getValue());
|
1766 |
buchmann |
1.16 |
gSysMPF_Purity->SetPointError(0,0.0,inclusive.MPF_Result_FaceValue.getError());
|
1767 |
buchmann |
1.17 |
|
1768 |
buchmann |
1.20 |
gSysMPF_Purity->SetPoint(1,PurityLoose,loose.MPF_Result_FaceValue.getValue());//x value?
|
1769 |
buchmann |
1.16 |
gSysMPF_Purity->SetPointError(1,0.0,loose.MPF_Result_FaceValue.getError());
|
1770 |
buchmann |
1.20 |
gSysMPF_Purity->SetPoint(2,PurityMedium,medium.MPF_Result_FaceValue.getValue());//x value?
|
1771 |
buchmann |
1.16 |
gSysMPF_Purity->SetPointError(2,0.0,medium.MPF_Result_FaceValue.getError());
|
1772 |
buchmann |
1.20 |
gSysMPF_Purity->SetPoint(3,PurityTight,Reference.MPF_Result_FaceValue.getValue());//x value?
|
1773 |
buchmann |
1.16 |
gSysMPF_Purity->SetPointError(3,0.0,Reference.MPF_Result_FaceValue.getError());
|
1774 |
|
|
|
1775 |
buchmann |
1.17 |
|
1776 |
|
|
float min,max;
|
1777 |
|
|
FindMinMax(gSysMPF_Purity,min,max);
|
1778 |
|
|
purityhisto->SetStats(0);
|
1779 |
|
|
purityhisto->GetYaxis()->SetRangeUser(min,max);
|
1780 |
buchmann |
1.16 |
|
1781 |
|
|
gSysMPF_Purity->Fit("pol1");
|
1782 |
buchmann |
1.17 |
TPolyLine *purity_fit_uncert = GetFitUncertaintyShape(gSysMPF_Purity, "pol1", min, max,0.0,1.0);
|
1783 |
|
|
TF1* pufit = (TF1*)gSysMPF_Purity->GetFunction("pol1");
|
1784 |
|
|
|
1785 |
|
|
TF1* pufit_c = new TF1("pufit_c","[0]+[1]*x");
|
1786 |
|
|
pufit_c->SetParameters(pufit->GetParameters());
|
1787 |
|
|
pufit_c->SetLineColor(TColor::GetColor("#0101DF"));
|
1788 |
|
|
purity_fit_uncert->SetFillColor(TColor::GetColor("#5353FC"));
|
1789 |
|
|
pufit->SetLineColor(TColor::GetColor("#5353FC"));
|
1790 |
|
|
|
1791 |
|
|
purityhisto->Draw();
|
1792 |
|
|
purity_fit_uncert->Draw("f");
|
1793 |
|
|
gSysMPF_Purity->Draw("P*");
|
1794 |
|
|
pufit_c->Draw("same");
|
1795 |
|
|
DrawPrelim();
|
1796 |
|
|
|
1797 |
|
|
float ExtrapolatedResult=pufit->GetParameter(0)+1.0*pufit->GetParameter(1);
|
1798 |
|
|
float dExtrapolatedResult=sqrt(pufit->GetParError(0)*pufit->GetParError(0)+1.0*1.0*pufit->GetParError(1)*pufit->GetParError(1));
|
1799 |
|
|
|
1800 |
|
|
stringstream summary;
|
1801 |
|
|
summary << "#splitline{Reference: " << std::setprecision(4) << Reference.MPF_Result_FaceValue.getValue() << "+/-" << std::setprecision(4) << Reference.MPF_Result_FaceValue.getError() << "}{";
|
1802 |
|
|
summary << "Extrapolation: " << std::setprecision(4) << ExtrapolatedResult << " +/- " << std::setprecision(4) << dExtrapolatedResult << "}";
|
1803 |
|
|
|
1804 |
|
|
dout << "Have found an extrapolated result at 1.0 of " << ExtrapolatedResult << " ; will use the difference between this result and the face value as ";
|
1805 |
|
|
dout << "purity-related systematic uncertainty" << endl;
|
1806 |
|
|
|
1807 |
|
|
TText *infobox = write_title(summary.str());
|
1808 |
|
|
infobox->SetX(0.75);
|
1809 |
|
|
infobox->SetTextSize(0.03);
|
1810 |
|
|
infobox->SetY(0.75);
|
1811 |
|
|
infobox->Draw();
|
1812 |
|
|
|
1813 |
buchmann |
1.16 |
CompleteSave(zbcanvas,"Systematics/Purity");
|
1814 |
|
|
|
1815 |
buchmann |
1.28 |
dout << "Bin-by-bin systematics : " << endl;
|
1816 |
|
|
dout << " Oversmearing : " << endl;
|
1817 |
|
|
dout << " down: " << PrintVector(SysMPF_Alpha_down_Bins) << endl;
|
1818 |
|
|
dout << " up : " << PrintVector(SysMPF_Alpha_up_Bins) << endl;
|
1819 |
|
|
dout << " eff/mistag variation: " << endl;
|
1820 |
|
|
dout << " down: " << PrintVector(SysMPF_EFF_down_Bins) << endl;
|
1821 |
|
|
dout << " up : " << PrintVector(SysMPF_EFF_up_Bins) << endl;
|
1822 |
|
|
dout << " neutrinos: " << endl;
|
1823 |
|
|
dout << " down: " << PrintVector(SysMPF_Neutrino_down_Bins) << endl;
|
1824 |
|
|
dout << " up : " << PrintVector(SysMPF_Neutrino_up_Bins) << endl;
|
1825 |
buchmann |
1.16 |
|
1826 |
buchmann |
1.17 |
|
1827 |
buchmann |
1.16 |
float SysMPF_Purity = abs(ExtrapolatedResult-Reference.MPF_Result_FaceValue.getValue());
|
1828 |
|
|
|
1829 |
buchmann |
1.20 |
float sys_alpha = abs(SysMPF_Alpha_down)>abs(SysMPF_Alpha_up)?abs(SysMPF_Alpha_down):abs(SysMPF_Alpha_up);
|
1830 |
|
|
float sys_eff = abs(SysMPF_EFF_down)>abs(SysMPF_EFF_up)?abs(SysMPF_EFF_down):abs(SysMPF_EFF_up);
|
1831 |
|
|
float sys_purity = abs(SysMPF_Purity);
|
1832 |
|
|
float sys_neutrino = abs(SysMPF_Neutrino_down)>abs(SysMPF_Neutrino_up)?abs(SysMPF_Neutrino_down):abs(SysMPF_Neutrino_up);
|
1833 |
|
|
float sys = sqrt(sys_alpha*sys_alpha+sys_eff*sys_eff+sys_purity*sys_purity+sys_neutrino*sys_neutrino);
|
1834 |
buchmann |
1.16 |
|
1835 |
|
|
dout << "MPF METHOD:" << endl;
|
1836 |
buchmann |
1.17 |
dout << " Systematics : down up (selected)" << endl;
|
1837 |
buchmann |
1.20 |
dout << " Oversmearing : " << SysMPF_Alpha_down << " , " << SysMPF_Alpha_up << " ( " << sys_alpha << ") " << endl;
|
1838 |
buchmann |
1.16 |
dout << " eff/mistag variation : " << SysMPF_EFF_down << " , " << SysMPF_EFF_up << " ( " << sys_eff << ") " << endl;
|
1839 |
|
|
dout << " purity : " << SysMPF_Purity << " ( " << sys_purity << " )" << endl;
|
1840 |
buchmann |
1.20 |
dout << " neutrino : " << SysMPF_Neutrino_down << " , " << SysMPF_Neutrino_up << " ( " << sys_neutrino << ") " << endl;
|
1841 |
|
|
dout << " total : " << sys << " (note that this is the sys on C_{abs}^{b}, not yet on C_{corr} - there will also be an additional source!)" << endl;
|
1842 |
buchmann |
1.16 |
dout << endl << endl;
|
1843 |
buchmann |
1.17 |
dout << " FINAL RESULTS : " << endl;
|
1844 |
|
|
dout << " C_{abs}^{b} = " << Reference.MPF_Result_FaceValue << " (stat) +/- " << sys << " (sys) " << endl;
|
1845 |
|
|
dout << " C_{abs}^{inc} = " << inclusive.MPF_Result_FaceValue << " (stat) " << endl;
|
1846 |
|
|
|
1847 |
|
|
float sysfinal = Reference.MPF_Result_FaceValue.getValue()/inclusive.MPF_Result_FaceValue.getValue();
|
1848 |
|
|
sysfinal *= sqrt(sys*sys/(Reference.MPF_Result_FaceValue.getValue()*Reference.MPF_Result_FaceValue.getValue()));
|
1849 |
|
|
//yes, this could be simplified but it would look like a bug.
|
1850 |
|
|
|
1851 |
buchmann |
1.20 |
|
1852 |
|
|
|
1853 |
|
|
|
1854 |
|
|
dout << "Note: Varying the alpha cut (->face value) we get the following results: " << endl;
|
1855 |
|
|
dout << "-30%: " << AlphaThresholdVariationDown30.MPF_Result_FaceValue/AlphaThresholdVariationDown30inc.MPF_Result_FaceValue << " (stat)" << endl;
|
1856 |
|
|
dout << "-10%: " << AlphaThresholdVariationDown10.MPF_Result_FaceValue/AlphaThresholdVariationDown10inc.MPF_Result_FaceValue << " (stat)" << endl;
|
1857 |
|
|
dout << " 0%: " << Reference.MPF_Result_FaceValue/inclusive.MPF_Result_FaceValue << " (stat) +/- " << endl;
|
1858 |
|
|
dout << "+10%: " << AlphaThresholdVariationUp10.MPF_Result_FaceValue/AlphaThresholdVariationUp10inc.MPF_Result_FaceValue << " (stat)" << endl;
|
1859 |
|
|
dout << "+30%: " << AlphaThresholdVariationUp30.MPF_Result_FaceValue/AlphaThresholdVariationUp30inc.MPF_Result_FaceValue << " (stat)" << endl;
|
1860 |
|
|
|
1861 |
|
|
dout << " XCheck for Rabs, varying the alpha cut (->face value) we get the following results: " << endl;
|
1862 |
|
|
dout << " -30%: " << AlphaThresholdVariationDown30.Rabs_Result_FaceValue/AlphaThresholdVariationDown30inc.Rabs_Result_FaceValue << " (stat)" << endl;
|
1863 |
|
|
dout << " -10%: " << AlphaThresholdVariationDown10.Rabs_Result_FaceValue/AlphaThresholdVariationDown10inc.Rabs_Result_FaceValue << " (stat)" << endl;
|
1864 |
|
|
dout << " 0%: " << Reference.Rabs_Result_FaceValue/inclusive.Rabs_Result_FaceValue << " (stat) +/- " << endl;
|
1865 |
|
|
dout << " +10%: " << AlphaThresholdVariationUp10.Rabs_Result_FaceValue/AlphaThresholdVariationUp10inc.Rabs_Result_FaceValue << " (stat)" << endl;
|
1866 |
|
|
dout << " +30%: " << AlphaThresholdVariationUp30.Rabs_Result_FaceValue/AlphaThresholdVariationUp30inc.Rabs_Result_FaceValue << " (stat)" << endl;
|
1867 |
|
|
|
1868 |
|
|
|
1869 |
buchmann |
1.28 |
dout << " Also checked what happens when you only use events with one jet and only with more than one jets: " << endl;
|
1870 |
|
|
dout << " Only 1 : " << OnlyOneJet.MPF_Result_FaceValue/OnlyOneJetinc.MPF_Result_FaceValue << " (stat) " << endl;
|
1871 |
|
|
dout << " More than 1 : " << MultipleJets.MPF_Result_FaceValue/MultipleJetsinc.MPF_Result_FaceValue << " (stat) " << endl;
|
1872 |
|
|
|
1873 |
buchmann |
1.20 |
float sys_alphavar_up = abs(AlphaThresholdVariationUp30.MPF_Result_FaceValue.getValue()/AlphaThresholdVariationUp30inc.MPF_Result_FaceValue.getValue() - Reference.MPF_Result_FaceValue.getValue()/inclusive.MPF_Result_FaceValue.getValue());
|
1874 |
|
|
float sys_alphavar_down = abs(AlphaThresholdVariationDown30.MPF_Result_FaceValue.getValue()/AlphaThresholdVariationDown30inc.MPF_Result_FaceValue.getValue() - Reference.MPF_Result_FaceValue.getValue()/inclusive.MPF_Result_FaceValue.getValue());
|
1875 |
|
|
float sys_alphavar = sys_alphavar_up>sys_alphavar_down?sys_alphavar_up:sys_alphavar_down;
|
1876 |
|
|
|
1877 |
|
|
dout << " -> Additional systematic (from 30%) : " << sys_alphavar << endl;
|
1878 |
|
|
sysfinal=sqrt(sysfinal*sysfinal+sys_alphavar*sys_alphavar);
|
1879 |
|
|
dout << "Final systematic is : " << sysfinal << endl;
|
1880 |
|
|
|
1881 |
|
|
dout << " ******************************************** < FINAL RESULT > ******************************************** " << endl;
|
1882 |
buchmann |
1.17 |
dout << " C_{corr} = " << Reference.MPF_Result_FaceValue/inclusive.MPF_Result_FaceValue << " (stat) +/- " << sysfinal << " (sys) " << endl;
|
1883 |
buchmann |
1.20 |
dout << " ******************************************** < /FINAL RESULT > ******************************************** " << endl;
|
1884 |
|
|
|
1885 |
|
|
dout << "Note that if L5 corrections are applied, we get " << L5Reference.MPF_Result_FaceValue/L5inclusive.MPF_Result_FaceValue << " (stat) " << endl;
|
1886 |
buchmann |
1.16 |
|
1887 |
buchmann |
1.19 |
LeadingB=TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898");
|
1888 |
buchmann |
1.16 |
|
1889 |
buchmann |
1.15 |
} else {
|
1890 |
buchmann |
1.19 |
ZbResultContainer Reference = new_data_mc_agreement_2d(false,"ZbCHS3010_alpha","reference",TCut("ZbCHS3010_bTagProbCSVBP[0]>0.898"),TCut("ZbCHS3010_BTagWgtT"),0.3);
|
1891 |
buchmann |
1.15 |
}
|
1892 |
|
|
|
1893 |
buchmann |
1.1 |
|
1894 |
buchmann |
1.2 |
delete zbcanvas;
|
1895 |
buchmann |
1.1 |
}
|
1896 |
buchmann |
1.7 |
|
1897 |
|
|
|
1898 |
|
|
|
1899 |
|
|
|
1900 |
|
|
//*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/* DELETE EVERYTHING BELOW THIS LINE /*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*/*//
|
1901 |
|
|
|
1902 |
|
|
|
1903 |
|
|
const char* concatenate(string bla1, string bla2) {
|
1904 |
|
|
stringstream bla;
|
1905 |
|
|
bla << bla1 << bla2;
|
1906 |
|
|
return bla.str().c_str();
|
1907 |
|
|
}
|
1908 |
|
|
|
1909 |
|
|
void SpecialCutFlow(string identifier) {
|
1910 |
|
|
stringstream MegaCut;
|
1911 |
|
|
|
1912 |
|
|
|
1913 |
|
|
|
1914 |
|
|
MegaCut << " 1*(" << (const char*) (ZplusBsel&&TCut(concatenate(identifier,"_pfJetGoodNumBtag>0"))) << ")";
|
1915 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB) << ")";
|
1916 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB) << ")";
|
1917 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut) << ")";
|
1918 |
buchmann |
1.19 |
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000").c_str())) << ")";
|
1919 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.3").c_str())) << ")";
|
1920 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.2").c_str())) << ")";
|
1921 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.15").c_str())) << ")";
|
1922 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.1").c_str())) << ")";
|
1923 |
|
|
MegaCut << " + 1*(" << (const char*) (ZplusBsel&&LeadingB&&EtaB&&PhiZcut&&TCut(((string)"pt>30&&pt<1000&&"+identifier+"_alpha<0.05").c_str())) << ")";
|
1924 |
buchmann |
1.7 |
MegaCut << " ";
|
1925 |
|
|
|
1926 |
|
|
TCanvas *can = new TCanvas("can","can");
|
1927 |
|
|
can->SetLogy(1);
|
1928 |
buchmann |
1.9 |
TCut basecut(ZplusBsel);
|
1929 |
buchmann |
1.7 |
|
1930 |
|
|
|
1931 |
|
|
|
1932 |
|
|
TLegend *leg = allsamples.allbglegend();
|
1933 |
|
|
|
1934 |
|
|
|
1935 |
|
|
TH1F *data = allsamples.Draw("data", MegaCut.str(),11,-0.5,10.5, "", "events", basecut,data,luminosity);
|
1936 |
buchmann |
1.20 |
THStack mcm = allsamples.DrawStack("mc", MegaCut.str(),11,-0.5,10.5, "", "events", basecut,mc,luminosity);
|
1937 |
buchmann |
1.7 |
|
1938 |
|
|
float runningsum=0;
|
1939 |
|
|
for(int i=data->GetNbinsX();i>0;i--) {
|
1940 |
|
|
runningsum+=data->GetBinContent(i);
|
1941 |
|
|
data->SetBinContent(i,runningsum);
|
1942 |
|
|
}
|
1943 |
|
|
|
1944 |
|
|
float minimum=data->GetMaximum();
|
1945 |
|
|
|
1946 |
|
|
TH1F* h;
|
1947 |
|
|
TIter nextOF(mcm.GetHists());
|
1948 |
|
|
|
1949 |
|
|
float mcsum=0;
|
1950 |
|
|
float zb=0;
|
1951 |
|
|
while ( h = (TH1F*)nextOF() ) {
|
1952 |
|
|
float runningsum=0;
|
1953 |
|
|
minimum=data->GetMaximum();//done deliberately at each step so get the minimum of the last (!) contribution
|
1954 |
|
|
for(int i=h->GetNbinsX();i>0;i--) {
|
1955 |
|
|
runningsum+=h->GetBinContent(i);
|
1956 |
|
|
h->SetBinContent(i,runningsum);
|
1957 |
|
|
if(runningsum<minimum&&runningsum>0) minimum=runningsum;
|
1958 |
|
|
}
|
1959 |
|
|
if(Contains(h->GetName(),"Z_b_")) {
|
1960 |
|
|
zb=h->GetBinContent(h->GetNbinsX());
|
1961 |
|
|
}
|
1962 |
|
|
mcsum+=h->GetBinContent(h->GetNbinsX());
|
1963 |
|
|
}
|
1964 |
|
|
|
1965 |
|
|
|
1966 |
|
|
|
1967 |
|
|
data->SetMinimum(0.05*minimum);
|
1968 |
|
|
can->cd(1)->SetBottomMargin(0.25);
|
1969 |
|
|
data->GetXaxis()->SetBinLabel(1,"Pre-selection");
|
1970 |
|
|
data->GetXaxis()->SetBinLabel(2,"Contains b jet");
|
1971 |
|
|
data->GetXaxis()->SetBinLabel(3,"Leading jet is b-jet");
|
1972 |
|
|
data->GetXaxis()->SetBinLabel(4,"|#eta_{b}|<1.3 ");
|
1973 |
|
|
data->GetXaxis()->SetBinLabel(5,"|#delta#phi(b,Z)|>2.7");
|
1974 |
buchmann |
1.19 |
data->GetXaxis()->SetBinLabel(6,"30<p_{T}^{Z}<1000 GeV");
|
1975 |
buchmann |
1.7 |
data->GetXaxis()->SetBinLabel(7,"#alpha < 0.3");
|
1976 |
|
|
data->GetXaxis()->SetBinLabel(8,"#alpha < 0.2");
|
1977 |
|
|
data->GetXaxis()->SetBinLabel(9,"#alpha < 0.15");
|
1978 |
|
|
data->GetXaxis()->SetBinLabel(10,"#alpha < 0.1");
|
1979 |
|
|
data->GetXaxis()->SetBinLabel(11,"#alpha < 0.05");
|
1980 |
|
|
data->GetXaxis()->LabelsOption("v");
|
1981 |
|
|
|
1982 |
|
|
stringstream purityinfo;
|
1983 |
|
|
purityinfo << "Purity: " << std::setprecision(3) << 100*zb/mcsum << " %";
|
1984 |
|
|
stringstream neventsinfo;
|
1985 |
|
|
neventsinfo << "Nevents: " << data->GetBinContent(data->GetNbinsX());
|
1986 |
|
|
TH1F *crap = new TH1F("crap","",1,0,1);
|
1987 |
|
|
crap->SetLineColor(kWhite);
|
1988 |
|
|
leg->AddEntry(crap,purityinfo.str().c_str(),"l");
|
1989 |
|
|
leg->AddEntry(crap,neventsinfo.str().c_str(),"l");
|
1990 |
|
|
|
1991 |
|
|
data->Draw("e1");
|
1992 |
buchmann |
1.19 |
mcm.Draw("histo,same");
|
1993 |
buchmann |
1.7 |
data->Draw("same,e1,axis");
|
1994 |
|
|
data->Draw("same,e1");
|
1995 |
|
|
// data->Draw("same,TEXT");
|
1996 |
|
|
|
1997 |
|
|
leg->Draw();
|
1998 |
|
|
|
1999 |
|
|
DrawPrelim();
|
2000 |
|
|
|
2001 |
|
|
CompleteSave(can,"CutFlow___"+identifier);
|
2002 |
|
|
|
2003 |
|
|
delete crap;
|
2004 |
|
|
delete data;
|
2005 |
buchmann |
1.20 |
CleanLegends();
|
2006 |
|
|
DeleteStack(mcm);
|
2007 |
|
|
|
2008 |
buchmann |
1.7 |
|
2009 |
|
|
}
|