CMS 3D CMS Logo

Py8EGun.cc
Go to the documentation of this file.
1 
4 
6 
7 namespace gen {
8 
9 class Py8EGun : public Py8GunBase {
10 
11  public:
12 
13  Py8EGun( edm::ParameterSet const& );
14  ~Py8EGun() override {}
15 
16  bool generatePartonsAndHadronize() override;
17  const char* classname() const override;
18 
19  private:
20 
21  // EGun particle(s) characteristics
22  double fMinEta;
23  double fMaxEta;
24  double fMinE ;
25  double fMaxE ;
27 
28 };
29 
30 // implementation
31 //
33  : Py8GunBase(ps)
34 {
35 
36  // ParameterSet defpset ;
37  edm::ParameterSet pgun_params =
38  ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
39  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
40  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
41  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
42  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
43  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
44 
45 }
46 
48 {
49 
50  fMasterGen->event.reset();
51 
52  for ( size_t i=0; i<fPartIDs.size(); i++ )
53  {
54 
55  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
56 
57  double phi = (fMaxPhi-fMinPhi) * randomEngine().flat() + fMinPhi;
58  double ee = (fMaxE-fMinE) * randomEngine().flat() + fMinE;
59  double eta = (fMaxEta-fMinEta) * randomEngine().flat() + fMinEta;
60  double the = 2.*atan(exp(-eta));
61 
62  double mass = (fMasterGen->particleData).m0( particleID );
63 
64  double pp = sqrt( ee*ee - mass*mass );
65  double px = pp * sin(the) * cos(phi);
66  double py = pp * sin(the) * sin(phi);
67  double pz = pp * cos(the);
68 
69  if ( !((fMasterGen->particleData).isParticle( particleID )) )
70  {
71  particleID = std::fabs(particleID) ;
72  }
73  (fMasterGen->event).append( particleID, 1, 0, 0, px, py, pz, ee, mass );
74  int eventSize = (fMasterGen->event).size()-1;
75 // -log(flat) = exponential distribution
76  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
77  (fMasterGen->event)[eventSize].tau( tauTmp );
78 
79 
80 // Here also need to add anti-particle (if any)
81 // otherwise just add a 2nd particle of the same type
82 // (for example, gamma)
83 //
84  if ( fAddAntiParticle )
85  {
86  if ( (fMasterGen->particleData).isParticle( -particleID ) )
87  {
88  (fMasterGen->event).append( -particleID, 1, 0, 0, -px, -py, -pz, ee, mass );
89  }
90  else
91  {
92  (fMasterGen->event).append( particleID, 1, 0, 0, -px, -py, -pz, ee, mass );
93  }
94  eventSize = (fMasterGen->event).size()-1;
95 // -log(flat) = exponential distribution
96  tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
97  (fMasterGen->event)[eventSize].tau( tauTmp );
98  }
99 
100  }
101 
102  if ( !fMasterGen->next() ) return false;
103  evtGenDecay();
104 
105  event().reset(new HepMC::GenEvent);
106  return toHepMC.fill_next_event( fMasterGen->event, event().get() );
107 
108 }
109 
110 const char* Py8EGun::classname() const
111 {
112  return "Py8EGun";
113 }
114 
116 
117 } // end namespace
118 
119 using gen::Pythia8EGun;
size
Write out results.
T getParameter(std::string const &) const
bool fAddAntiParticle
Definition: Py8EGun.cc:26
double fMinE
Definition: Py8EGun.cc:24
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
const char * classname() const override
Definition: Py8EGun.cc:110
double fMinPhi
Definition: Py8GunBase.h:60
double fMinEta
Definition: Py8EGun.cc:22
double flat() override
Definition: P8RndmEngine.cc:7
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void evtGenDecay()
Definition: Py8GunBase.cc:159
T sqrt(T t)
Definition: SSEVec.h:18
double fMaxEta
Definition: Py8EGun.cc:23
bool generatePartonsAndHadronize() override
Definition: Py8EGun.cc:47
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
edm::GeneratorFilter< gen::Py8EGun, gen::ExternalDecayDriver > Pythia8EGun
Definition: Py8EGun.cc:115
std::unique_ptr< HepMC::GenEvent > & event()
std::vector< int > fPartIDs
Definition: Py8GunBase.h:59
P8RndmEngine & randomEngine()
double fMaxE
Definition: Py8EGun.cc:25
double fMaxPhi
Definition: Py8GunBase.h:61
~Py8EGun() override
Definition: Py8EGun.cc:14
HepMC::Pythia8ToHepMC toHepMC
std::unique_ptr< Pythia8::Pythia > fMasterGen
Py8EGun(edm::ParameterSet const &)
Definition: Py8EGun.cc:32
Definition: event.py:1