CMS 3D CMS Logo

Pythia6EGun.cc
Go to the documentation of this file.
1 
2 #include <iostream>
3 
4 #include "Pythia6EGun.h"
5 
7 
10 
12 
14 
15 using namespace edm;
16 using namespace gen;
17 
18 Pythia6EGun::Pythia6EGun( const ParameterSet& pset ) :
19  Pythia6ParticleGun(pset)
20 {
21 
22  // ParameterSet defpset ;
23  ParameterSet pgun_params =
24  pset.getParameter<ParameterSet>("PGunParameters"); // , defpset ) ;
25  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
26  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
27  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
28  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
29  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
30 
31 }
32 
34 {
35 }
36 
37 void Pythia6EGun::generateEvent(CLHEP::HepRandomEngine*)
38 {
39 
40  Pythia6Service::InstanceWrapper guard(fPy6Service); // grab Py6 instance
41 
42  // now actualy, start cooking up the event gun
43  //
44 
45  // 1st, primary vertex
46  //
47  HepMC::GenVertex* Vtx = new HepMC::GenVertex( HepMC::FourVector(0.,0.,0.));
48 
49  // here re-create fEvt (memory)
50  //
51  fEvt = new HepMC::GenEvent() ;
52 
53  int ip=1;
54  for ( size_t i=0; i<fPartIDs.size(); i++ )
55  {
56  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py6 !!!
57  int py6PID = HepPID::translatePDTtoPythia( particleID );
58  int dum = 0;
59  double ee=0,the=0,eta=0;
60  double mass = pymass_(particleID);
61 
62  // fill p(ip,5) (in PYJETS) with mass value right now,
63  // because the (hardcoded) mstu(10)=1 will make py1ent
64  // pick the mass from there
65  pyjets.p[4][ip-1]=mass;
66 
67  double phi = (fMaxPhi-fMinPhi)*pyr_(&dum)+fMinPhi;
68  ee = (fMaxE-fMinE)*pyr_(&dum)+fMinE;
69  eta = (fMaxEta-fMinEta)*pyr_(&dum)+fMinEta;
70  the = 2.*atan(exp(-eta));
71 
72  py1ent_(ip, py6PID, ee, the, phi);
73 
74  double px = pyjets.p[0][ip-1]; // pt*cos(phi) ;
75  double py = pyjets.p[1][ip-1]; // pt*sin(phi) ;
76  double pz = pyjets.p[2][ip-1]; // mom*cos(the) ;
77 
78  HepMC::FourVector p(px,py,pz,ee) ;
79  HepMC::GenParticle* Part =
80  new HepMC::GenParticle(p,particleID,1);
81  Part->suggest_barcode( ip ) ;
82  Vtx->add_particle_out(Part);
83 
85  {
86  ip = ip + 1;
87  HepMC::GenParticle* APart = addAntiParticle( ip, particleID, ee, eta, phi );
88  if ( APart ) Vtx->add_particle_out(APart) ;
89  }
90  ip++;
91  }
92 
93  fEvt->add_vertex(Vtx);
94 
95  // run pythia
96  pyexec_();
97 
98  return;
99 }
100 
T getParameter(std::string const &) const
double pyr_(int *idummy)
HepMC::GenParticle * addAntiParticle(int &, int &, double &, double &, double &)
Definition: Pythia6Gun.cc:244
HepMC::GenEvent * fEvt
Definition: Pythia6Gun.h:71
double p[5][pyjets_maxn]
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
double fMinPhi
Definition: Pythia6Gun.h:66
double pymass_(int &)
std::vector< int > fPartIDs
double fMaxPhi
Definition: Pythia6Gun.h:67
~Pythia6EGun() override
Definition: Pythia6EGun.cc:33
void py1ent_(int &ip, int &kf, double &pe, double &the, double &phi)
HLT enums.
Pythia6Service * fPy6Service
Definition: Pythia6Gun.h:61
void pyexec_()
void generateEvent(CLHEP::HepRandomEngine *) override
Definition: Pythia6EGun.cc:37