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::Py8PtGun Class Reference
Inheritance diagram for gen::Py8PtGun:
gen::Py8GunBase gen::Py8InterfaceBase

Public Member Functions

const char * classname () const
 
bool generatePartonsAndHadronize ()
 
 Py8PtGun (edm::ParameterSet const &)
 
 ~Py8PtGun ()
 
- 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 fMaxEta
 
double fMaxPt
 
double fMinEta
 
double fMinPt
 

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::Pythia8ToHepMC toHepMC
 

Detailed Description

Definition at line 10 of file Py8PtGun.cc.

Constructor & Destructor Documentation

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

Definition at line 33 of file Py8PtGun.cc.

References fAddAntiParticle, fMaxEta, fMaxPt, fMinEta, fMinPt, 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  fMinPt = pgun_params.getParameter<double>("MinPt"); // , 0.);
43  fMaxPt = pgun_params.getParameter<double>("MaxPt"); // , 0.);
44  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
45 
46 }
T getParameter(std::string const &) const
bool fAddAntiParticle
Definition: Py8PtGun.cc:27
double fMinPt
Definition: Py8PtGun.cc:25
double fMinEta
Definition: Py8PtGun.cc:23
Py8GunBase(edm::ParameterSet const &ps)
Definition: Py8GunBase.cc:7
double fMaxPt
Definition: Py8PtGun.cc:26
double fMaxEta
Definition: Py8PtGun.cc:24
gen::Py8PtGun::~Py8PtGun ( )
inline

Definition at line 15 of file Py8PtGun.cc.

15 {}

Member Function Documentation

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

Implements gen::Py8InterfaceBase.

Definition at line 120 of file Py8PtGun.cc.

121 {
122  return "Py8PtGun";
123 }
bool gen::Py8PtGun::generatePartonsAndHadronize ( )
virtual

Implements gen::Py8InterfaceBase.

Definition at line 48 of file Py8PtGun.cc.

References python.multivaluedict::append(), funct::cos(), eta(), gen::Py8GunBase::event(), create_public_lumi_plots::exp, fAddAntiParticle, gen::Py8InterfaceBase::fMasterGen, fMaxEta, gen::Py8GunBase::fMaxPhi, fMaxPt, fMinEta, gen::Py8GunBase::fMinPhi, fMinPt, gen::Py8GunBase::fPartIDs, i, scaleCards::mass, 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 eta = (fMaxEta-fMinEta) * randomEngine->flat() + fMinEta;
64  double the = 2.*atan(exp(-eta));
65 
66  double pt = (fMaxPt-fMinPt) * randomEngine->flat() + fMinPt;
67 
68  double mass = (fMasterGen->particleData).m0( particleID );
69 
70  double pp = pt / sin(the); // sqrt( ee*ee - mass*mass );
71  double ee = sqrt( pp*pp + mass*mass );
72 
73  double px = pt * cos(phi);
74  double py = pt * sin(phi);
75  double pz = pp * cos(the);
76 
77  if ( !((fMasterGen->particleData).isParticle( particleID )) )
78  {
79  particleID = std::fabs(particleID) ;
80  }
81  if( 1<= fabs(particleID) && fabs(particleID) <= 6) // quarks
82  (fMasterGen->event).append( particleID, 23, 101, 0, px, py, pz, ee, mass );
83  else if (fabs(particleID) == 21) // gluons
84  (fMasterGen->event).append( 21, 23, 101, 102, px, py, pz, ee, mass );
85  else // other
86  (fMasterGen->event).append( particleID, 1, 0, 0, px, py, pz, ee, mass );
87 
88 // Here also need to add anti-particle (if any)
89 // otherwise just add a 2nd particle of the same type
90 // (for example, gamma)
91 //
92  if ( fAddAntiParticle )
93  {
94  if( 1 <= fabs(particleID) && fabs(particleID) <= 6){ // quarks
95  (fMasterGen->event).append( -particleID, 23, 0, 101, -px, -py, -pz, ee, mass );
96  }
97  else if (fabs(particleID) == 21){ // gluons
98  (fMasterGen->event).append( 21, 23, 102, 101, -px, -py, -pz, ee, mass );
99  }
100  else if ( (fMasterGen->particleData).isParticle( -particleID ) )
101  {
102  (fMasterGen->event).append( -particleID, 1, 0, 0, -px, -py, -pz, ee, mass );
103  }
104  else
105  {
106  (fMasterGen->event).append( particleID, 1, 0, 0, -px, -py, -pz, ee, mass );
107  }
108  }
109 
110  }
111 
112 
113  if ( !fMasterGen->next() ) return false;
114 
115  event().reset(new HepMC::GenEvent);
116  return toHepMC.fill_next_event( fMasterGen->event, event().get() );
117 
118 }
int i
Definition: DBlmapReader.cc:9
std::auto_ptr< Pythia8::Pythia > fMasterGen
tuple pp
Definition: createTree.py:15
CLHEP::HepRandomEngine * randomEngine
Definition: PYR.cc:4
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
double fMinPhi
Definition: Py8GunBase.h:66
T eta() const
bool fAddAntiParticle
Definition: Py8PtGun.cc:27
T sqrt(T t)
Definition: SSEVec.h:46
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
std::vector< int > fPartIDs
Definition: Py8GunBase.h:65
std::auto_ptr< HepMC::GenEvent > & event()
Definition: Py8GunBase.h:60
double fMinPt
Definition: Py8PtGun.cc:25
double fMinEta
Definition: Py8PtGun.cc:23
double fMaxPhi
Definition: Py8GunBase.h:67
tuple mass
Definition: scaleCards.py:27
HepMC::Pythia8ToHepMC toHepMC
double fMaxPt
Definition: Py8PtGun.cc:26
double fMaxEta
Definition: Py8PtGun.cc:24
Definition: DDAxes.h:10

Member Data Documentation

bool gen::Py8PtGun::fAddAntiParticle
private

Definition at line 27 of file Py8PtGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8PtGun().

double gen::Py8PtGun::fMaxEta
private

Definition at line 24 of file Py8PtGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8PtGun().

double gen::Py8PtGun::fMaxPt
private

Definition at line 26 of file Py8PtGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8PtGun().

double gen::Py8PtGun::fMinEta
private

Definition at line 23 of file Py8PtGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8PtGun().

double gen::Py8PtGun::fMinPt
private

Definition at line 25 of file Py8PtGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8PtGun().