CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
gen::Py8EGun Class Reference
Inheritance diagram for gen::Py8EGun:
gen::Py8GunBase gen::Py8InterfaceBase gen::BaseHadronizer

Public Member Functions

const char * classname () const override
 
bool generatePartonsAndHadronize () override
 
 Py8EGun (edm::ParameterSet const &)
 
 ~Py8EGun () override
 
- Public Member Functions inherited from gen::Py8GunBase
void evtGenDecay ()
 
void finalizeEvent () override
 
bool initializeForInternalPartons () override
 
 Py8GunBase (edm::ParameterSet const &ps)
 
virtual bool residualDecay ()
 
void setRandomEngine (CLHEP::HepRandomEngine *v)
 
std::vector< std::string > const & sharedResources () const
 
void statistics () override
 
 ~Py8GunBase () override
 
- Public Member Functions inherited from gen::Py8InterfaceBase
bool decay ()
 
bool declareSpecialSettings (const std::vector< std::string > &)
 
bool declareStableParticles (const std::vector< int > &)
 
void p8SetRandomEngine (CLHEP::HepRandomEngine *v)
 
 Py8InterfaceBase (edm::ParameterSet const &ps)
 
P8RndmEnginerandomEngine ()
 
bool readSettings (int)
 
 ~Py8InterfaceBase () override
 
- Public Member Functions inherited from gen::BaseHadronizer
 BaseHadronizer (edm::ParameterSet const &ps)
 
void cleanLHE ()
 
void generateLHE (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine, unsigned int ncpu)
 
edm::EventgetEDMEvent () const
 
std::unique_ptr< HepMC::GenEventgetGenEvent ()
 
std::unique_ptr< GenEventInfoProductgetGenEventInfo ()
 
virtual std::unique_ptr< GenLumiInfoHeadergetGenLumiInfoHeader () const
 
GenRunInfoProductgetGenRunInfo ()
 
std::unique_ptr< lhef::LHEEventgetLHEEvent ()
 
const std::shared_ptr< lhef::LHERunInfo > & getLHERunInfo () const
 
const std::string & gridpackPath () const
 
int randomIndex () const
 
const std::string & randomInitConfigDescription () const
 
void randomizeIndex (edm::LuminosityBlock const &lumi, CLHEP::HepRandomEngine *rengine)
 
void resetEvent (std::unique_ptr< HepMC::GenEvent > event)
 
void resetEventInfo (std::unique_ptr< GenEventInfoProduct > eventInfo)
 
virtual bool select (HepMC::GenEvent *) const
 
void setEDMEvent (edm::Event &event)
 
void setLHEEvent (std::unique_ptr< lhef::LHEEvent > event)
 
void setLHERunInfo (std::unique_ptr< lhef::LHERunInfo > runInfo)
 
void setRandomEngine (CLHEP::HepRandomEngine *v)
 
std::vector< std::string > const & sharedResources () const
 
virtual ~BaseHadronizer () noexcept(false)
 

Private Attributes

bool fAddAntiParticle
 
double fMaxE
 
double fMaxEta
 
double fMinE
 
double fMinEta
 

Additional Inherited Members

- Protected Member Functions inherited from gen::BaseHadronizer
std::unique_ptr< HepMC::GenEvent > & event ()
 
std::unique_ptr< GenEventInfoProduct > & eventInfo ()
 
lhef::LHEEventlheEvent ()
 
lhef::LHERunInfolheRunInfo ()
 
GenRunInfoProductrunInfo ()
 
- Protected Attributes inherited from gen::Py8GunBase
double fMaxPhi
 
double fMinPhi
 
std::vector< int > fPartIDs
 
- Protected Attributes inherited from gen::Py8InterfaceBase
HepMC::IO_AsciiParticles * ascii_io
 
std::shared_ptr< EvtGenDecays > evtgenDecays
 
std::string evtgenDecFile
 
std::string evtgenPdlFile
 
std::vector< std::string > evtgenUserFiles
 
std::unique_ptr< Pythia8::Pythia > fDecayer
 
std::unique_ptr< Pythia8::Pythia > fMasterGen
 
edm::ParameterSet fParameters
 
unsigned int maxEventsToPrint
 
bool pythiaHepMCVerbosity
 
bool pythiaHepMCVerbosityParticles
 
unsigned int pythiaPylistVerbosity
 
std::string slhafile_
 
HepMC::Pythia8ToHepMC toHepMC
 
bool useEvtGen
 
- Protected Attributes inherited from gen::BaseHadronizer
std::string lheFile_
 
int randomIndex_
 

Detailed Description

Definition at line 9 of file Py8EGun.cc.

Constructor & Destructor Documentation

◆ Py8EGun()

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

Definition at line 28 of file Py8EGun.cc.

28  : Py8GunBase(ps) {
29  // ParameterSet defpset ;
30  edm::ParameterSet pgun_params = ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
31  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
32  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
33  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
34  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
35  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
36  }

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

◆ ~Py8EGun()

gen::Py8EGun::~Py8EGun ( )
inlineoverride

Definition at line 12 of file Py8EGun.cc.

12 {}

Member Function Documentation

◆ classname()

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

Implements gen::Py8InterfaceBase.

Definition at line 118 of file Py8EGun.cc.

118 { return "Py8EGun"; }

◆ generatePartonsAndHadronize()

bool gen::Py8EGun::generatePartonsAndHadronize ( )
overridevirtual

Implements gen::Py8InterfaceBase.

Definition at line 38 of file Py8EGun.cc.

38  {
39  fMasterGen->event.reset();
40 
41  int colorindex = 101;
42 
43  for (size_t i = 0; i < fPartIDs.size(); i++) {
44  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
45  if ((std::abs(particleID) <= 6 || particleID == 21) && !(fAddAntiParticle)) {
46  throw cms::Exception("PythiaError") << "Attempting to generate quarks or gluons without setting "
47  "AddAntiParticle to true. This will not handle color properly."
48  << std::endl;
49  }
50 
51  double phi = (fMaxPhi - fMinPhi) * randomEngine().flat() + fMinPhi;
52  double ee = (fMaxE - fMinE) * randomEngine().flat() + fMinE;
53  double eta = (fMaxEta - fMinEta) * randomEngine().flat() + fMinEta;
54  double the = 2. * atan(exp(-eta));
55 
56  double mass = (fMasterGen->particleData).m0(particleID);
57 
58  double pp = sqrt(ee * ee - mass * mass);
59  double px = pp * sin(the) * cos(phi);
60  double py = pp * sin(the) * sin(phi);
61  double pz = pp * cos(the);
62 
63  if (!((fMasterGen->particleData).isParticle(particleID))) {
64  particleID = std::fabs(particleID);
65  }
66  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) { // quarks
67  (fMasterGen->event).append(particleID, 23, colorindex, 0, px, py, pz, ee, mass);
68  if (!fAddAntiParticle)
69  colorindex += 1;
70  } else if (std::abs(particleID) == 21) { // gluons
71  (fMasterGen->event).append(21, 23, colorindex, colorindex + 1, px, py, pz, ee, mass);
72  if (!fAddAntiParticle) {
73  colorindex += 2;
74  }
75  }
76  // other
77  else {
78  (fMasterGen->event).append(particleID, 1, 0, 0, px, py, pz, ee, mass);
79  int eventSize = (fMasterGen->event).size() - 1;
80  // -log(flat) = exponential distribution
81  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
82  (fMasterGen->event)[eventSize].tau(tauTmp);
83  }
84 
85  // Here also need to add anti-particle (if any)
86  // otherwise just add a 2nd particle of the same type
87  // (for example, gamma)
88  //
89  if (fAddAntiParticle) {
90  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) { // quarks
91  (fMasterGen->event).append(-particleID, 23, 0, colorindex, -px, -py, -pz, ee, mass);
92  colorindex += 1;
93  } else if (std::abs(particleID) == 21) { // gluons
94  (fMasterGen->event).append(21, 23, colorindex + 1, colorindex, -px, -py, -pz, ee, mass);
95  colorindex += 2;
96  } else {
97  if ((fMasterGen->particleData).isParticle(-particleID)) {
98  (fMasterGen->event).append(-particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
99  } else {
100  (fMasterGen->event).append(particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
101  }
102  int eventSize = (fMasterGen->event).size() - 1;
103  // -log(flat) = exponential distribution
104  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
105  (fMasterGen->event)[eventSize].tau(tauTmp);
106  }
107  }
108  }
109 
110  if (!fMasterGen->next())
111  return false;
112  evtGenDecay();
113 
114  event().reset(new HepMC::GenEvent);
115  return toHepMC.fill_next_event(fMasterGen->event, event().get());
116  }

References funct::abs(), mps_setup::append, funct::cos(), PVValHelper::eta, gen::BaseHadronizer::event(), gen::Py8GunBase::evtGenDecay(), Exception, JetChargeProducer_cfi::exp, fAddAntiParticle, gen::P8RndmEngine::flat(), gen::Py8InterfaceBase::fMasterGen, fMaxE, fMaxEta, gen::Py8GunBase::fMaxPhi, fMinE, fMinEta, gen::Py8GunBase::fMinPhi, gen::Py8GunBase::fPartIDs, get, mps_fire::i, dqm-mbProfile::log, EgHLTOffHistBins_cfi::mass, EgammaObjectsElectrons_cfi::particleID, createTree::pp, multPhiCorr_741_25nsDY_cfi::px, multPhiCorr_741_25nsDY_cfi::py, gen::Py8InterfaceBase::randomEngine(), funct::sin(), findQualityFiles::size, mathSSE::sqrt(), metsig::tau, and gen::Py8InterfaceBase::toHepMC.

Member Data Documentation

◆ fAddAntiParticle

bool gen::Py8EGun::fAddAntiParticle
private

Definition at line 23 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

◆ fMaxE

double gen::Py8EGun::fMaxE
private

Definition at line 22 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

◆ fMaxEta

double gen::Py8EGun::fMaxEta
private

Definition at line 20 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

◆ fMinE

double gen::Py8EGun::fMinE
private

Definition at line 21 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

◆ fMinEta

double gen::Py8EGun::fMinEta
private

Definition at line 19 of file Py8EGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8EGun().

gen::Py8InterfaceBase::fMasterGen
std::unique_ptr< Pythia8::Pythia > fMasterGen
Definition: Py8InterfaceBase.h:44
gen::Py8GunBase::Py8GunBase
Py8GunBase(edm::ParameterSet const &ps)
Definition: Py8GunBase.cc:15
mps_fire.i
i
Definition: mps_fire.py:355
gen::Py8GunBase::fMinPhi
double fMinPhi
Definition: Py8GunBase.h:58
gen::Py8EGun::fMinEta
double fMinEta
Definition: Py8EGun.cc:19
metsig::tau
Definition: SignAlgoResolutions.h:49
gen::P8RndmEngine::flat
double flat() override
Definition: P8RndmEngine.cc:7
multPhiCorr_741_25nsDY_cfi.py
py
Definition: multPhiCorr_741_25nsDY_cfi.py:12
HepMC::GenEvent
Definition: hepmc_rootio.cc:9
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
EgammaObjectsElectrons_cfi.particleID
particleID
Definition: EgammaObjectsElectrons_cfi.py:4
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
gen::Py8GunBase::evtGenDecay
void evtGenDecay()
Definition: Py8GunBase.cc:144
PVValHelper::eta
Definition: PVValidationHelpers.h:69
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
gen::Py8InterfaceBase::randomEngine
P8RndmEngine & randomEngine()
Definition: Py8InterfaceBase.h:41
edm::ParameterSet
Definition: ParameterSet.h:36
mps_setup.append
append
Definition: mps_setup.py:85
gen::Py8GunBase::fPartIDs
std::vector< int > fPartIDs
Definition: Py8GunBase.h:57
gen::Py8EGun::fMinE
double fMinE
Definition: Py8EGun.cc:21
get
#define get
DDAxes::phi
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
gen::Py8EGun::fAddAntiParticle
bool fAddAntiParticle
Definition: Py8EGun.cc:23
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
Exception
Definition: hltDiff.cc:246
gen::Py8InterfaceBase::toHepMC
HepMC::Pythia8ToHepMC toHepMC
Definition: Py8InterfaceBase.h:46
EgHLTOffHistBins_cfi.mass
mass
Definition: EgHLTOffHistBins_cfi.py:34
dqm-mbProfile.log
log
Definition: dqm-mbProfile.py:17
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
createTree.pp
pp
Definition: createTree.py:17
gen::Py8EGun::fMaxEta
double fMaxEta
Definition: Py8EGun.cc:20
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
gen::Py8GunBase::fMaxPhi
double fMaxPhi
Definition: Py8GunBase.h:59
event
Definition: event.py:1
gen::Py8EGun::fMaxE
double fMaxE
Definition: Py8EGun.cc:22
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443