CMS 3D CMS Logo

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

Public Member Functions

const char * classname () const override
 
bool generatePartonsAndHadronize () override
 
 Py8JetGun (edm::ParameterSet const &)
 
 ~Py8JetGun () 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 makeTmpSLHA (const std::string &)
 
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

double fMaxE
 
double fMaxEta
 
double fMaxP
 
double fMinE
 
double fMinEta
 
double fMinP
 

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< Pythia8::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 11 of file Py8JetGun.cc.

Constructor & Destructor Documentation

◆ Py8JetGun()

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

Definition at line 31 of file Py8JetGun.cc.

31  : Py8GunBase(ps) {
32  // ParameterSet defpset ;
33  edm::ParameterSet pgun_params = ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
34  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
35  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
36  fMinP = pgun_params.getParameter<double>("MinP"); // , 0.);
37  fMaxP = pgun_params.getParameter<double>("MaxP"); // , 0.);
38  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
39  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
40  }

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

◆ ~Py8JetGun()

gen::Py8JetGun::~Py8JetGun ( )
inlineoverride

Definition at line 14 of file Py8JetGun.cc.

14 {}

Member Function Documentation

◆ classname()

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

Implements gen::Py8InterfaceBase.

Definition at line 115 of file Py8JetGun.cc.

115 { return "Py8JetGun"; }

◆ generatePartonsAndHadronize()

bool gen::Py8JetGun::generatePartonsAndHadronize ( )
overridevirtual

Implements gen::Py8InterfaceBase.

Definition at line 42 of file Py8JetGun.cc.

42  {
43  fMasterGen->event.reset();
44 
45  double totPx = 0.;
46  double totPy = 0.;
47  double totPz = 0.;
48  double totE = 0.;
49  double totM = 0.;
50  double phi, eta, the, ee, pp;
51 
52  for (size_t i = 0; i < fPartIDs.size(); i++) {
53  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
54 
55  phi = 2. * M_PI * randomEngine().flat();
56  the = acos(-1. + 2. * randomEngine().flat());
57 
58  // from input
59  //
60  ee = (fMaxE - fMinE) * randomEngine().flat() + fMinE;
61 
62  double mass = (fMasterGen->particleData).m0(particleID);
63 
64  pp = sqrt(ee * ee - mass * mass);
65 
66  double px = pp * sin(the) * cos(phi);
67  double py = pp * sin(the) * sin(phi);
68  double pz = pp * cos(the);
69 
70  if (!((fMasterGen->particleData).isParticle(particleID))) {
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  // values for computing total mass
80  //
81  totPx += px;
82  totPy += py;
83  totPz += pz;
84  totE += ee;
85  }
86 
87  totM = sqrt(totE * totE - (totPx * totPx + totPy * totPy + totPz * totPz));
88 
89  //now the boost (from input params)
90  //
91  pp = (fMaxP - fMinP) * randomEngine().flat() + fMinP;
92  ee = sqrt(totM * totM + pp * pp);
93 
94  //the boost direction (from input params)
95  //
98  the = 2. * atan(exp(-eta));
99 
100  double betaX = pp / ee * std::sin(the) * std::cos(phi);
101  double betaY = pp / ee * std::sin(the) * std::sin(phi);
102  double betaZ = pp / ee * std::cos(the);
103 
104  // boost all particles
105  //
106  (fMasterGen->event).bst(betaX, betaY, betaZ);
107 
108  if (!fMasterGen->next())
109  return false;
110 
111  event() = std::make_unique<HepMC::GenEvent>();
112  return toHepMC.fill_next_event(fMasterGen->event, event().get());
113  }

References mps_setup::append, funct::cos(), PVValHelper::eta, gen::BaseHadronizer::event(), JetChargeProducer_cfi::exp, gen::P8RndmEngine::flat(), gen::Py8InterfaceBase::fMasterGen, fMaxE, fMaxEta, fMaxP, gen::Py8GunBase::fMaxPhi, fMinE, fMinEta, fMinP, gen::Py8GunBase::fMinPhi, gen::Py8GunBase::fPartIDs, get, mps_fire::i, dqm-mbProfile::log, M_PI, 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

◆ fMaxE

double gen::Py8JetGun::fMaxE
private

Definition at line 26 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

◆ fMaxEta

double gen::Py8JetGun::fMaxEta
private

Definition at line 22 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

◆ fMaxP

double gen::Py8JetGun::fMaxP
private

Definition at line 24 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

◆ fMinE

double gen::Py8JetGun::fMinE
private

Definition at line 25 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

◆ fMinEta

double gen::Py8JetGun::fMinEta
private

Definition at line 21 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

◆ fMinP

double gen::Py8JetGun::fMinP
private

Definition at line 23 of file Py8JetGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8JetGun().

gen::Py8JetGun::fMaxEta
double fMaxEta
Definition: Py8JetGun.cc:22
gen::Py8InterfaceBase::fMasterGen
std::unique_ptr< Pythia8::Pythia > fMasterGen
Definition: Py8InterfaceBase.h:47
gen::Py8GunBase::Py8GunBase
Py8GunBase(edm::ParameterSet const &ps)
Definition: Py8GunBase.cc:15
gen::Py8JetGun::fMinEta
double fMinEta
Definition: Py8JetGun.cc:21
mps_fire.i
i
Definition: mps_fire.py:428
gen::Py8GunBase::fMinPhi
double fMinPhi
Definition: Py8GunBase.h:58
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
gen::Py8JetGun::fMinP
double fMinP
Definition: Py8JetGun.cc:23
gen::Py8JetGun::fMaxP
double fMaxP
Definition: Py8JetGun.cc:24
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::Py8JetGun::fMinE
double fMinE
Definition: Py8JetGun.cc:25
PVValHelper::eta
Definition: PVValidationHelpers.h:70
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
gen::Py8JetGun::fMaxE
double fMaxE
Definition: Py8JetGun.cc:26
gen::Py8InterfaceBase::randomEngine
P8RndmEngine & randomEngine()
Definition: Py8InterfaceBase.h:44
edm::ParameterSet
Definition: ParameterSet.h:47
mps_setup.append
append
Definition: mps_setup.py:85
gen::Py8GunBase::fPartIDs
std::vector< int > fPartIDs
Definition: Py8GunBase.h:57
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:49
get
#define get
DDAxes::phi
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
gen::Py8InterfaceBase::toHepMC
HepMC::Pythia8ToHepMC toHepMC
Definition: Py8InterfaceBase.h:49
EgHLTOffHistBins_cfi.mass
mass
Definition: EgHLTOffHistBins_cfi.py:34
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
dqm-mbProfile.log
log
Definition: dqm-mbProfile.py:17
createTree.pp
pp
Definition: createTree.py:17
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
gen::Py8GunBase::fMaxPhi
double fMaxPhi
Definition: Py8GunBase.h:59
event
Definition: event.py:1
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443