-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPtMinimization.C
191 lines (132 loc) · 5.89 KB
/
PtMinimization.C
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
179
180
181
182
183
184
185
186
187
188
189
190
191
#include "TFile.h"
#include <iostream>
#include <vector>
#include "TChain.h"
#include "TTree.h"
#include "TSystem.h"
#include "TCanvas.h"
#include "TH1.h"
#include "TH2.h"
#include "TF1.h"
#include "TGraphErrors.h"
#include "TGraphAsymmErrors.h"
#include "TLorentzVector.h"
#include "TClonesArray.h"
#include "TROOT.h"
#include "TMath.h"
#include "TStyle.h"
#include "TColor.h"
#include "TLegend.h"
#include "TPad.h"
#include "TLine.h"
#include "TH1F.h"
//you first decalre all the varaibles you are goingt o pick from the tree and use in this code. Be careful that the type of the varaible (Int, Float etc) have to be the same that when it was filled in the tree maker
//my interesting variables
double weight;
double charge[2], chi2[2], ndof[2], strip_hits[2], pixel_hits[2], pixel_layers[2], strip_layers[2], muon_hits[2];
double pt[2], qoverp[2], theta[2], eta[2], phi[2], dxy[2], dz[2];
double error_pt[2], error_qoverp[2], error_theta[2], error_phi[2], error_dxy[2], error_dz[2];
double ref_charge, ref_chi2[2],ref_ndof[2], ref_pixel_hits[2], ref_strip_hits[2], ref_pixel_layers[2], ref_strip_layers[2], ref_muon_hits[2];
double ref_pt,ref_theta[2], ref_phi[2], ref_dxy[2], ref_dz[2];
double ref_error_pt[2], ref_error_theta[2], ref_error_phi[2], ref_error_dxy[2], ref_error_dz[2];
double mc_charge, mc_pt, mc_inv_pt, mc_qpt, mc_qinv_pt, mc_theta, mc_phi, mc_dxy, mc_dz, mc_eta;
int tmr_choice[2], pmc_choice[2];
//Declaration of hitsogramm i plan to plot with this code
TH1F *hist =new TH1F("test","",50,0,2000);
TH1F *ref_hist =new TH1F("ref_test","",50,0,2000);
//Begining of teh function
void PtMinimization(){
gStyle->SetPadBorderMode(0);
gStyle->SetCanvasColor(10);
gStyle->SetCanvasBorderMode(0);
gStyle->SetCanvasBorderSize(0);
gStyle->SetFrameBorderMode(0);
gStyle->SetFrameLineColor(0);
gStyle->SetFillColor(0);
// the next line is to link the tree you have
TChain *treedata = new TChain("UTpickedTracks/t");
// this is the root file you have input with your tree inside
treedata->Add("resolution_cosmics_data.root");
// the following lines are to extract the branch of the trees, when there is a & it means that there is only one entry per event, like for run, lumi, event, dilepton mass in my case for DY events.
treedata->SetBranchAddress("charge",charge);
treedata->SetBranchAddress("chi2",chi2);
treedata->SetBranchAddress("strip_hits",strip_hits);
treedata->SetBranchAddress("pixel_hits",pixel_hits);
treedata->SetBranchAddress("pixel_layers",pixel_layers);
treedata->SetBranchAddress("strip_layers",strip_layers);
treedata->SetBranchAddress("muon_hits",muon_hits);
treedata->SetBranchAddress("pt",pt);
treedata->SetBranchAddress("qoverp",qoverp);
treedata->SetBranchAddress("theta",theta);
treedata->SetBranchAddress("phi",phi);
treedata->SetBranchAddress("dxy",dxy);
treedata->SetBranchAddress("dz",dz);
treedata->SetBranchAddress("error_pt",error_pt);
treedata->SetBranchAddress("error_theta",error_theta);
treedata->SetBranchAddress("error_phi",error_phi);
treedata->SetBranchAddress("error_dxy",error_dxy);
treedata->SetBranchAddress("error_dz",error_dz);
treedata->SetBranchAddress("ref_charge",&ref_charge);
treedata->SetBranchAddress("ref_chi2",&ref_chi2);
treedata->SetBranchAddress("ref_strip_hits",&ref_strip_hits);
treedata->SetBranchAddress("ref_pixel_layers",&ref_pixel_layers);
treedata->SetBranchAddress("ref_strip_layers",&ref_strip_layers);
treedata->SetBranchAddress("ref_muon_hits",&ref_muon_hits);
treedata->SetBranchAddress("ref_pt",&ref_pt);
treedata->SetBranchAddress("ref_theta",&ref_theta);
treedata->SetBranchAddress("ref_phi",&ref_phi);
treedata->SetBranchAddress("ref_dxy",&ref_dxy);
treedata->SetBranchAddress("ref_dz",&ref_dz);
treedata->SetBranchAddress("ref_error_pt",&ref_error_pt);
treedata->SetBranchAddress("ref_error_theta",&ref_error_theta);
treedata->SetBranchAddress("ref_error_phi",&ref_error_phi);
treedata->SetBranchAddress("ref_error_dxy",&ref_error_dxy);
treedata->SetBranchAddress("ref_error_dz",&ref_error_dz);
// This will get the numbers of entries of the tree.
Long64_t nentries = treedata->GetEntries();
//Decalaration of variable not in the tree that i use for the results
Float_t sameCharge = 0.;
Float_t goodMuon = 0.;
Float_t highPtMuon = 0.;
for ( int p=0; p<nentries ;p++){
// this loop over all the events in your tree
treedata->GetEntry(p);
//apply some quality cuts to select the entries that we think are interesting
//if (pt[1]>53. && pt[0]>53. && strip_layers[0]>=5 && strip_layers[1]>=5 && pixel_hits[0]>=1 && pixel_hits[1]>=1 ){
for (int k=0; k<2 ;k++) {
goodMuon++;
//if (pt[k]>400.){ // this corresponds to select high pT muon, in my case i have ony two muons per event
highPtMuon++;
//if (charge[0]==charge[1]) {
//sameCharge ++;
hist->Fill(pt[k]);
//ref_hist->Fill(ref_pt);
//}
// }//end of condition on muon pT muon
} //end loop on individual muon k
//}//end of condition on event selection
}// end loop p
//cout<<"Same charge muon = "<<sameCharge<<endl;
cout << "entries = "<<nentries<<endl;
cout<<"goodmuon = "<<goodMuon<<endl;
cout<<"highPtmuon = "<<highPtMuon<<endl;
TCanvas *dytMass = new TCanvas("pickypT","",600,600);
hist->SetXTitle("pT GeV");
hist->SetLineColor(2);
hist->SetLineWidth(2);
hist->Draw("");
//ref_hist->SetLineColor(3);
//ref_hist->SetLineWidth(2);
//ref_hist->Draw("");
/* TLegend * leg1 = new TLegend(0.6, 0.65, 0.98, 0.82);
leg1->SetFillColor(10);
//leg1->AddEntry(hist,"pT of same muon charge ","l");
leg1->AddEntry(hist,"track","l");
leg1->AddEntry(ref_hist,"ref track ","l");
leg1 -> Draw();
*/
TFile *fout = new TFile("testPt.root ","RECREATE");
hist->Write();
//ref_hist->Write();
fout->Close();
}// end of function