CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
gen::Py8EGun Class Reference
Inheritance diagram for gen::Py8EGun:
gen::Py8GunBase gen::Py8InterfaceBase

Public Member Functions

const char * classname () const
 
bool generatePartonsAndHadronize ()
 
 Py8EGun (edm::ParameterSet const &)
 
 ~Py8EGun ()
 
- Public Member Functions inherited from gen::Py8GunBase
void finalizeEvent ()
 
edm::EventgetEDMEvent () const
 
HepMC::GenEvent * getGenEvent ()
 
GenEventInfoProductgetGenEventInfo ()
 
GenRunInfoProductgetGenRunInfo ()
 
bool initializeForInternalPartons ()
 
 Py8GunBase (edm::ParameterSet const &ps)
 
void resetEvent (HepMC::GenEvent *event)
 
void resetEventInfo (GenEventInfoProduct *eventInfo)
 
virtual bool residualDecay ()
 
virtual bool select (HepMC::GenEvent *) const
 
void setEDMEvent (edm::Event &event)
 
void statistics ()
 
 ~Py8GunBase ()
 
- Public Member Functions inherited from gen::Py8InterfaceBase
bool decay ()
 
bool declareSpecialSettings (const std::vector< std::string > &)
 
bool declareStableParticles (const std::vector< int > &)
 
 Py8InterfaceBase (edm::ParameterSet const &ps)
 
bool readSettings (int)
 
 ~Py8InterfaceBase ()
 

Private Attributes

bool fAddAntiParticle
 
double fMaxE
 
double fMaxEta
 
double fMinE
 
double fMinEta
 

Additional Inherited Members

- Protected Member Functions inherited from gen::Py8GunBase
std::auto_ptr< HepMC::GenEvent > & event ()
 
std::auto_ptr
< GenEventInfoProduct > & 
eventInfo ()
 
GenRunInfoProductrunInfo ()
 
- Protected Attributes inherited from gen::Py8GunBase
double fMaxPhi
 
double fMinPhi
 
std::vector< int > fPartIDs
 
- Protected Attributes inherited from gen::Py8InterfaceBase
std::auto_ptr< Pythia8::Pythia > fDecayer
 
std::auto_ptr< Pythia8::Pythia > fMasterGen
 
ParameterCollector fParameters
 
unsigned int maxEventsToPrint
 
bool pythiaHepMCVerbosity
 
unsigned int pythiaPylistVerbosity
 
HepMC::I_Pythia8 toHepMC
 

Detailed Description

Definition at line 10 of file Py8EGun.cc.

Constructor & Destructor Documentation

gen::Py8EGun::Py8EGun ( edm::ParameterSet const &  ps)

Definition at line 33 of file Py8EGun.cc.

References fAddAntiParticle, fMaxE, fMaxEta, fMinE, fMinEta, and edm::ParameterSet::getParameter().

34  : Py8GunBase(ps)
35 {
36 
37  // ParameterSet defpset ;
38  edm::ParameterSet pgun_params =
39  ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
40  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
41  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
42  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
43  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
44  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
45 
46 }
T getParameter(std::string const &) const
bool fAddAntiParticle
Definition: Py8EGun.cc:27
double fMinE
Definition: Py8EGun.cc:25
double fMinEta
Definition: Py8EGun.cc:23
double fMaxEta
Definition: Py8EGun.cc:24
double fMaxE
Definition: Py8EGun.cc:26
Py8GunBase(edm::ParameterSet const &ps)
Definition: Py8GunBase.cc:9
gen::Py8EGun::~Py8EGun ( )
inline

Definition at line 15 of file Py8EGun.cc.

15 {}

Member Function Documentation

const char * gen::Py8EGun::classname ( ) const
virtual

Implements gen::Py8InterfaceBase.

Definition at line 108 of file Py8EGun.cc.

109 {
110  return "Py8EGun";
111 }
bool gen::Py8EGun::generatePartonsAndHadronize ( )
virtual

Implements gen::Py8InterfaceBase.

Definition at line 48 of file Py8EGun.cc.

References python.multivaluedict::append(), funct::cos(), eta(), gen::Py8GunBase::event(), create_public_lumi_plots::exp, fAddAntiParticle, gen::Py8InterfaceBase::fMasterGen, fMaxE, fMaxEta, gen::Py8GunBase::fMaxPhi, fMinE, fMinEta, gen::Py8GunBase::fMinPhi, gen::Py8GunBase::fPartIDs, i, phi, createTree::pp, randomEngine, funct::sin(), mathSSE::sqrt(), and gen::Py8InterfaceBase::toHepMC.

49 {
50 
51  fMasterGen->event.reset();
52 
53  for ( size_t i=0; i<fPartIDs.size(); i++ )
54  {
55 
56  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
57 
58  // FIXME !!!
59  // Ouch, it's using bare randomEngine pointer - that's NOT safe.
60  // Need to hold a pointer somewhere properly !!!
61  //
62  double phi = (fMaxPhi-fMinPhi) * randomEngine->flat() + fMinPhi;
63  double ee = (fMaxE-fMinE) * randomEngine->flat() + fMinE;
64  double eta = (fMaxEta-fMinEta) * randomEngine->flat() + fMinEta;
65  double the = 2.*atan(exp(-eta));
66 
67  double mass = (fMasterGen->particleData).mass( particleID );
68 // double mass = (pythia->particleData).m0( particleID );
69 
70  double pp = sqrt( ee*ee - mass*mass );
71  double px = pp * sin(the) * cos(phi);
72  double py = pp * sin(the) * sin(phi);
73  double pz = pp * cos(the);
74 
75  if ( !((fMasterGen->particleData).isParticle( particleID )) )
76  {
77  particleID = std::fabs(particleID) ;
78  }
79  (fMasterGen->event).append( particleID, 1, 0, 0, px, py, pz, ee, mass );
80 
81 // Here also need to add anti-particle (if any)
82 // otherwise just add a 2nd particle of the same type
83 // (for example, gamma)
84 //
85  if ( fAddAntiParticle )
86  {
87  if ( (fMasterGen->particleData).isParticle( -particleID ) )
88  {
89  (fMasterGen->event).append( -particleID, 1, 0, 0, px, py, pz, ee, mass );
90  }
91  else
92  {
93  (fMasterGen->event).append( particleID, 1, 0, 0, px, py, pz, ee, mass );
94  }
95  }
96 
97  }
98 
99  if ( !fMasterGen->next() ) return false;
100 
101  event().reset(new HepMC::GenEvent);
102  toHepMC.fill_next_event( fMasterGen->event, event().get() );
103 
104  return true;
105 
106 }
int i
Definition: DBlmapReader.cc:9
bool fAddAntiParticle
Definition: Py8EGun.cc:27
std::auto_ptr< Pythia8::Pythia > fMasterGen
tuple pp
Definition: createTree.py:15
double fMinE
Definition: Py8EGun.cc:25
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
double fMinPhi
Definition: Py8GunBase.h:56
HepMC::I_Pythia8 toHepMC
double fMinEta
Definition: Py8EGun.cc:23
T eta() const
T sqrt(T t)
Definition: SSEVec.h:48
double fMaxEta
Definition: Py8EGun.cc:24
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::vector< int > fPartIDs
Definition: Py8GunBase.h:55
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:50
CLHEP::HepRandomEngine * randomEngine
Definition: RandomP8.cc:5
double fMaxE
Definition: Py8EGun.cc:26
double fMaxPhi
Definition: Py8GunBase.h:57
Definition: DDAxes.h:10

Member Data Documentation

bool gen::Py8EGun::fAddAntiParticle
private

Definition at line 27 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

double gen::Py8EGun::fMaxE
private

Definition at line 26 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

double gen::Py8EGun::fMaxEta
private

Definition at line 24 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

double gen::Py8EGun::fMinE
private

Definition at line 25 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

double gen::Py8EGun::fMinEta
private

Definition at line 23 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().