-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake_distributions_lhe_for_generator_comparison.cpp
More file actions
157 lines (121 loc) · 4.7 KB
/
make_distributions_lhe_for_generator_comparison.cpp
File metadata and controls
157 lines (121 loc) · 4.7 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
// c++ -o checkMomentum_00 `root-config --glibs --cflags` -lm checkMomentum_00.cpp
#include "LHEF.h"
#include <iomanip>
#include <vector>
#include <iostream>
#include <string>
#include <sstream>
#include "TH1.h"
#include "TFile.h"
#include "TLorentzVector.h"
// CINT does not understand some files included by LorentzVector
#include "Math/Vector3D.h"
#include "Math/Vector4D.h"
using namespace ROOT::Math;
using namespace std ;
TLorentzVector buildP (const LHEF::HEPEUP & event, int iPart)
{
TLorentzVector dummy ;
dummy.SetPxPyPzE (
event.PUP.at (iPart).at (0), // px
event.PUP.at (iPart).at (1), // py
event.PUP.at (iPart).at (2), // pz
event.PUP.at (iPart).at (3) // E
) ;
return dummy ;
}
int n_total_events = 0;
int n_events_with_two_leptons_and_two_quarks = 0;
int n_events_with_two_leptons_and_two_quarks_that_pass_cuts = 0;
int main(int argc, char ** argv)
{
if(argc < 2)
{
cout << "Usage: " << argv[0]
<< " input.lhe " << endl ;
return -1;
}
std::ifstream ifs (argv[1]) ;
LHEF::Reader reader (ifs) ;
TH1F diquark_mass ("diquark_mass", "diquark_mass", 100, 0, 3000) ;
TH1F dilepton_mass ("dilepton_mass", "dilepton_mass", 100, 0, 1000) ;
TH1F quark_pt ("quark_pt", "quark_pt", 100, 0, 300) ;
TH1F quark_eta ("quark_eta", "quark_eta", 100, -5, 5) ;
TH1F lepton_pt ("lepton_pt", "lepton_pt", 100, 0, 200) ;
TH1F lepton_eta ("lepton_eta", "lepton_eta", 100, -5, 5) ;
TH1F lepjet_dR ("lepjet_dR", "lepjet_dR", 100, -1, 1) ;
TH1F leplep_dR ("leplep_dR", "leplep_dR", 100, -5, 5) ;
std::vector<TLorentzVector> electrons;
//PG loop over input events
while (reader.readEvent ())
{
n_total_events+=1;
if ( reader.outsideBlock.length() ) std::cout << reader.outsideBlock;
std::vector<TLorentzVector> lepton_vector;
std::vector<TLorentzVector> quark_vector;
int n_w=0;
int n_quarks=0;
int n_leptons=0;
bool negative_charge_leptons = false;
// loop over particles in the event
for (int iPart = 0 ; iPart < reader.hepeup.IDUP.size (); ++iPart)
{
// outgoing particles
if ( reader.hepeup.ISTUP.at (iPart) == 1 )
{
if (abs (reader.hepeup.IDUP.at (iPart)) == 11 || abs (reader.hepeup.IDUP.at (iPart)) == 13 || abs (reader.hepeup.IDUP.at (iPart)) == 15){
if (reader.hepeup.IDUP.at (iPart) > 0)
negative_charge_leptons=true;
n_leptons++;
TLorentzVector vec = buildP (reader.hepeup, iPart) ;
lepton_vector.push_back(vec);
}
if (
abs (reader.hepeup.IDUP.at (iPart)) == 1 || abs (reader.hepeup.IDUP.at (iPart)) == 2 || abs (reader.hepeup.IDUP.at (iPart)) == 3 ||
abs (reader.hepeup.IDUP.at (iPart)) == 4 || abs (reader.hepeup.IDUP.at (iPart)) == 5 || abs (reader.hepeup.IDUP.at (iPart)) == 6
){
n_quarks++;
TLorentzVector vec = buildP (reader.hepeup, iPart) ;
quark_vector.push_back(vec);
}
} // outgoing particles
} // loop over particles in the event
if (quark_vector.size() != 2 && lepton_vector.size() != 2)
continue;
//std::cout << "lepton_vector[1].Pt() = " << lepton_vector[1].Pt() << std::endl;
n_events_with_two_leptons_and_two_quarks++;
if (negative_charge_leptons)
continue;
if (lepton_vector[0].Eta() > 2.5 || lepton_vector[0].Eta() < -2.5 || lepton_vector[1].Eta() > 2.5 || lepton_vector[1].Eta() < -2.5 )
continue;
if ((quark_vector[0]+quark_vector[1]).M() < 100)
continue;
if (quark_vector[0].Pt() < 10 || quark_vector[1].Pt() < 10)
continue;
n_events_with_two_leptons_and_two_quarks_that_pass_cuts++;
quark_pt.Fill(quark_vector[0].Pt());
quark_pt.Fill(quark_vector[1].Pt());
quark_eta.Fill(quark_vector[0].Eta());
quark_eta.Fill(quark_vector[1].Eta());
lepton_pt.Fill(lepton_vector[0].Pt());
lepton_pt.Fill(lepton_vector[1].Pt());
lepton_eta.Fill(lepton_vector[0].Eta());
lepton_eta.Fill(lepton_vector[1].Eta());
diquark_mass.Fill((quark_vector[0]+quark_vector[1]).M());
dilepton_mass.Fill((lepton_vector[0] + lepton_vector[1]).M());
} //PG loop over input events
std::cout << "n_total_events = " << n_total_events << std::endl;
std::cout << "n_events_with_two_leptons_and_two_quarks = " << n_events_with_two_leptons_and_two_quarks << std::endl;
std::cout << "n_events_with_two_leptons_and_two_quarks_that_pass_cuts = " << n_events_with_two_leptons_and_two_quarks_that_pass_cuts << std::endl;
TFile f ("output_distributions.root", "recreate") ;
quark_pt.Write();
quark_eta.Write();
lepton_pt.Write();
lepton_eta.Write();
lepjet_dR.Write();
leplep_dR.Write();
diquark_mass.Write();
dilepton_mass.Write();
f.Close () ;
return 0 ;
}