-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEff_lambda.C
More file actions
executable file
·179 lines (141 loc) · 5.36 KB
/
Eff_lambda.C
File metadata and controls
executable file
·179 lines (141 loc) · 5.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <TFile.h>
#include <TMath.h>
#include <iostream>
#include <TGraphErrors.h>
#include <TGraphAsymmErrors.h>
// define the generator's information across different ctau models
void Eff_lambda() {
gROOT->LoadMacro("CMS_lumi.C");
TString hfolder = "Final2012/" ;
TString fileName0 = "TCuts_GMSB_L100/GMSB2J_100_6000.root" ;
TString fileName1 = "TCuts_GMSB_L140/GMSB2J_140_6000.root" ;
TString fileName2 = "TCuts_GMSB_L180/GMSB2J_180_6000.root" ;
TString fileName3 = "TCuts_GMSB_L220/GMSB2J_220_6000.root" ;
double nGen[4] = { 50000, 50000, 50000, 50000 } ;
TString names[4] = { "100", "140", "180", "220" } ;
int color[4] = { 4, 2, 6, 1, } ;
const int nModel = 4;
int rbin = 2 ;
float ymax = 0.5 ;
float xmax = 1800. ;
TLegend* leg1 = new TLegend(.65, .63, .9, .88 );
//TLegend* leg1 = new TLegend(.35, .33, .6, .58 );
string legTitle = "#tau = 20 ns" ;
leg1->SetHeader( legTitle.c_str() );
TString plotname = "Eff_lambda_sel.png" ;
string hNameD = "h_ctbgT" ;
string hNameN = "sel_ctbgT" ;
/*
TString plotname = "Eff_hltSel_lambda.png" ;
string hNameD = "selR_ctbgT" ;
string hNameN = "sel_ctbgT" ;
TString plotname = "Eff_hlt_ctbgT.png" ;
string hNameD = "h_ctbgT" ;
string hNameN = "hlt_ctbgT" ;
TString plotname = "Eff_lambad_reco_ctbgT.png" ;
string hNameD = "obs_ctbgT" ;
string hNameN = "reco_ctbgT" ;
TString plotname = "Eff_lambda_sel.png" ;
string hNameD = "obs_ctbgT" ;
string hNameN = "sel_ctbgT" ;
*/
/*
string hName1 = "h_ctbgT" ; // All
string hName2 = "obs_ctbgT" ; // T available
string hName3 = "late_ctbgT" ; // T > 3ns
string hName4 = "hlt_ctbgT" ; // HLT
string hName5 = "reco_ctbgT" ; // EB + Pt > 1 GeV
string hName6 = "lateR_ctbgT" ; // EB + Pt > 1 GeV + T > 3ns
string hName6 = "lateR_ctbgT1" ; // EB + Pt > 1 GeV + T > 3ns + dt2 < 0.5
string hName6 = "lateR_ctbgT2" ; // EB + Pt > 1 GeV + T > 3ns + dt2 > 0.5
string hName7 = "sel_ctbgT" ; // EB + matched RECO + pass(HLT , Phot, JET, MET1 > 60, MET2 > 60)
string hName8 = "acc_ctbgT" ; // EB + matched RECO + pass(HLT , Phot, JET, MET1 > 60, MET2 > 60) + T > 3ns
*/
TFile* hfile[ nModel ] ;
TH1D* D_ctbgT[ nModel ] ;
TH1D* N_ctbgT[ nModel ] ;
hfile[0] = TFile::Open( fileName0 );
hfile[1] = TFile::Open( fileName1 );
hfile[2] = TFile::Open( fileName2 );
hfile[3] = TFile::Open( fileName3 );
for ( int i=0 ; i< nModel; i++ ) {
D_ctbgT[i] = (TH1D *) hfile[i]->Get( hNameD.c_str() ) ;
N_ctbgT[i] = (TH1D *) hfile[i]->Get( hNameN.c_str() ) ;
}
/*
h_ctbgT[i] = (TH1D *) hfile[i]->Get( hName1.c_str() ) ;
Obs_ctbgT[i] = (TH1D *) hfile[i]->Get( hName2.c_str() ) ;
Late_ctbgT[i] = (TH1D *) hfile[i]->Get( hName3.c_str() ) ;
HLT_ctbgT[i] = (TH1D *) hfile[i]->Get( hName4.c_str() ) ;
Reco_ctbgT[i] = (TH1D *) hfile[i]->Get( hName5.c_str() ) ;
LRec_ctbgT[i] = (TH1D *) hfile[i]->Get( hName6.c_str() ) ;
Sel_ctbgT[i] = (TH1D *) hfile[i]->Get( hName7.c_str() ) ;
Acc_ctbgT[i] = (TH1D *) hfile[i]->Get( hName8.c_str() ) ;
*/
gStyle->SetOptStat("");
// For the frame:
gStyle->SetFrameBorderMode(0);
gStyle->SetFrameBorderSize(1);
gStyle->SetFrameFillColor(0);
gStyle->SetFrameFillStyle(0);
gStyle->SetFrameLineColor(1);
gStyle->SetFrameLineStyle(1);
gStyle->SetFrameLineWidth(1);
gStyle->SetOptStat(kFALSE);
//gStyle->SetOptFit(111);
gStyle->SetOptTitle(0);
//gStyle->SetTitleFontSize(0.05);
gStyle->SetLabelOffset(0.007, "XYZ");
gStyle->SetLabelSize(0.04, "XYZ");
// Plots
TCanvas* c0 = new TCanvas("c0","", 800, 700);
c0->SetFillColor(10);
c0->SetFillColor(10);
c0->SetTopMargin(0.1);
c0->SetBottomMargin(0.13);
c0->SetLeftMargin(0.16);
c0->SetRightMargin(0.05);
c0->SetLogy();
//gPad->SetGridx();
//gPad->SetGridy();
c0->cd();
TGraphAsymmErrors* eff[nModel] ;
//leg1->Clear() ;
for ( int i=0; i< nModel; i++ ) {
eff[i]= new TGraphAsymmErrors();
D_ctbgT[i]->Rebin( rbin ) ;
N_ctbgT[i]->Rebin( rbin ) ;
eff[i]->Divide( N_ctbgT[i], D_ctbgT[i] );
eff[i]->SetMarkerColor( color[i] );
eff[i]->SetLineColor( color[i] );
eff[i]->SetLineWidth(2);
leg1->AddEntry( eff[i], names[i]+" TeV" , "L");
if ( i ==0 ) {
c0->cd();
c0->SetLogy(0);
eff[i]->SetMaximum( ymax );
eff[i]->SetMinimum( 0.0 );
eff[i]->SetMarkerStyle(22);
eff[i]->SetMarkerSize(1);
eff[i]->GetXaxis()->SetTitleOffset(0.9);
eff[i]->GetYaxis()->SetTitleOffset(1.25);
eff[i]->GetXaxis()->SetTitleSize(0.06);
eff[i]->GetYaxis()->SetTitleSize(0.06);
eff[i]->GetXaxis()->SetRangeUser(0, xmax ) ;
eff[i]->GetXaxis()->SetTitle("Transverse Decay Length (mm)") ;
eff[i]->GetYaxis()->SetTitle("Efficiency / 100 mm") ;
eff[i]->Draw("AP");
} else {
eff[i]->Draw("SAMEPS");
}
}
leg1->Draw("sames") ;
c0->Update();
CMS_lumi( c0, 2, 11 ) ;
c0->Update();
c0->Print( hfolder + plotname );
delete c0 ;
}