-
Notifications
You must be signed in to change notification settings - Fork 0
/
lhe_analyzer_5.cpp
150 lines (112 loc) · 4.4 KB
/
lhe_analyzer_5.cpp
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
// c++ -o checkMomentum_00 `root-config --glibs --cflags` -lm checkMomentum_00.cpp
#include "LHEF.h" //comes from http://home.thep.lu.se/~leif/LHEF/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)
{
int evt_num = 0;
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 lepton_pt ("lepton_pt", "lepton_pt", 100, 0, 200) ;
TH1F lepton_eta ("lepton_eta", "lepton_eta", 100, -5, 5) ;
TH1F lepton_flavor ("lepton_flavor", "lepton_flavor", 40, -20, 20) ;
//PG loop over input events
while (reader.readEvent ())
{
if (evt_num % 1000 == 0)
std::cout << evt_num << std::endl;
evt_num+=1;
//if (evt_num > 10000)
// break;
n_total_events+=1;
//if ( reader.outsideBlock.length() ) std::cout << reader.outsideBlock;
std::vector<TLorentzVector> lepton_vector;
std::vector<int> lepton_flavor_vector;
std::vector<TLorentzVector> lepton_mother_vector;
std::vector<TLorentzVector> quark_vector;
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);
lepton_flavor_vector.push_back(reader.hepeup.IDUP.at (iPart));
int moth1 = reader.hepeup.IDUP.at ( (reader.hepeup.MOTHUP.at (iPart)).first -1 );
int moth2 = reader.hepeup.IDUP.at ( (reader.hepeup.MOTHUP.at (iPart)).second -1 );
}
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 (! negative_charge_leptons)
continue;
assert((quark_vector.size() == 2 || quark_vector.size() == 3) && lepton_vector.size() == 2);
n_events_with_two_leptons_and_two_quarks++;
if ( (quark_vector[0]+quark_vector[1]).M() < 100)
continue;
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());
lepton_flavor.Fill(lepton_flavor_vector[0]);
lepton_flavor.Fill(lepton_flavor_vector[1]);
diquark_mass.Fill((quark_vector[0]+quark_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") ;
diquark_mass.Write();
lepton_pt.Write();
lepton_eta.Write();
lepton_flavor.Write();
f.Close () ;
return 0 ;
}