|
| | TwoElectronsTopCAL.outfilename = sys.argv[1] |
| |
| float | TwoElectronsTopCAL.mass = 0.511e-3 |
| |
| int | TwoElectronsTopCAL.pz = -10 |
| |
| | TwoElectronsTopCAL.E = np.sqrt(mass**2 + pz**2) |
| |
| int | TwoElectronsTopCAL.y1 = 110 |
| |
| int | TwoElectronsTopCAL.y2 = 180 |
| |
| int | TwoElectronsTopCAL.z = -64000 |
| |
| | TwoElectronsTopCAL.writer = HepMC3.WriterAscii( outfilename ) |
| |
| | TwoElectronsTopCAL.particle_in1 = HepMC3.GenParticle(HepMC3.FourVector(0, 0, pz, E)) |
| |
| | TwoElectronsTopCAL.particle_out1 = HepMC3.GenParticle(HepMC3.FourVector(0, 0, pz, E)) |
| |
| | TwoElectronsTopCAL.particle_in2 = HepMC3.GenParticle(HepMC3.FourVector(0, 0, pz, E)) |
| |
| | TwoElectronsTopCAL.particle_out2 = HepMC3.GenParticle(HepMC3.FourVector(0, 0, pz, E)) |
| |
| | TwoElectronsTopCAL.vertex1 = HepMC3.GenVertex(HepMC3.FourVector(0., y1, z, 0.)) |
| |
| | TwoElectronsTopCAL.vertex2 = HepMC3.GenVertex(HepMC3.FourVector(0., y2, z, 0.)) |
| |
| | TwoElectronsTopCAL.event = HepMC3.GenEvent( HepMC3.Units.GEV, HepMC3.Units.MM ) |
| |