forked from govoni/LHEActions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ep2taupInLHE.cpp
71 lines (54 loc) · 2.08 KB
/
ep2taupInLHE.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
// c++ -o ep2taupInLHE `root-config --glibs --cflags` -lm ep2taupInLHE.cpp
#include "LHEF.h"
#include <iomanip>
#include <vector>
#include <iostream>
#include <string>
#include <sstream>
#include "TLorentzVector.h"
int main(int argc, char ** argv) {
if(argc < 3) {
std::cout << "Usage: " << argv[0] << " input.lhe output.lhe" << std::endl ;
return -1;
}
std::ifstream ifs (argv[1]) ;
LHEF::Reader reader (ifs) ;
std::ofstream outputStream (argv[2]) ;
LHEF::Writer writer (outputStream) ;
writer.headerBlock() << reader.headerBlock ;
writer.initComments() << reader.initComments ;
writer.heprup = reader.heprup ;
writer.init () ;
// float k2 = 0.000510998928 * 0.000510998928 - 1.77682 * 1.77682 ; // GeV -3.15708905128
//PG ele massless in phantom
float k2 = 0. - 1.77682 * 1.77682 ; // GeV -3.15708905128
//PG loop over input events
while (reader.readEvent ()) {
if ( reader.outsideBlock.length() ) std::cout << reader.outsideBlock;
// 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 ( (reader.hepeup.IDUP.at (iPart)) == -11) { // e+
TLorentzVector dummy (
reader.hepeup.PUP.at (iPart).at (0), // px
reader.hepeup.PUP.at (iPart).at (1), // py
reader.hepeup.PUP.at (iPart).at (2), // pz
reader.hepeup.PUP.at (iPart).at (3) // E
) ;
float p2 = dummy.Vect ().Mag2 () ;
float scale = sqrt (1 + k2 / p2) ;
reader.hepeup.PUP.at (iPart).at (0) *= scale ; // px
reader.hepeup.PUP.at (iPart).at (1) *= scale ; // px
reader.hepeup.PUP.at (iPart).at (2) *= scale ; // px
reader.hepeup.IDUP.at (iPart) = -15 ; // tau+
}
if (reader.hepeup.IDUP.at (iPart) == 12) reader.hepeup.IDUP.at (iPart) = 16 ;
} // outgoing particles
} // loop over particles in the event
writer.eventComments() << reader.eventComments;
writer.hepeup = reader.hepeup;
writer.writeEvent();
} //PG loop over input events
return 0 ;
}