CMS 3D CMS Logo

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

Public Member Functions

const char * classname () const override
 
bool generatePartonsAndHadronize () override
 
 Py8MassGun (edm::ParameterSet const &)
 
 ~Py8MassGun () 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 fMaxEta
 
double fMaxM
 
double fMaxP
 
double fMaxPt
 
double fMinEta
 
double fMinM
 
double fMinP
 
double fMinPt
 
int fMomMode
 

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 9 of file Py8MassGun.cc.

Constructor & Destructor Documentation

◆ Py8MassGun()

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

Definition at line 32 of file Py8MassGun.cc.

32  : Py8GunBase(ps) {
33  // ParameterSet defpset ;
34  edm::ParameterSet pgun_params = ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
35  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
36  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
37  fMinP = pgun_params.getParameter<double>("MinP"); // , 0.);
38  fMaxP = pgun_params.getParameter<double>("MaxP"); // , 0.);
39  fMinPt = pgun_params.getParameter<double>("MinPt"); // , 0.);
40  fMaxPt = pgun_params.getParameter<double>("MaxPt"); // , 0.);
41  fMinM = pgun_params.getParameter<double>("MinM"); // , 0.);
42  fMaxM = pgun_params.getParameter<double>("MaxM"); // , 0.);
43  fMomMode = pgun_params.getParameter<int>("MomMode"); // , 1);
44  }

References fMaxEta, fMaxM, fMaxP, fMaxPt, fMinEta, fMinM, fMinP, fMinPt, fMomMode, and edm::ParameterSet::getParameter().

◆ ~Py8MassGun()

gen::Py8MassGun::~Py8MassGun ( )
inlineoverride

Definition at line 12 of file Py8MassGun.cc.

12 {}

Member Function Documentation

◆ classname()

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

Implements gen::Py8InterfaceBase.

Definition at line 113 of file Py8MassGun.cc.

113 { return "Py8MassGun"; }

◆ generatePartonsAndHadronize()

bool gen::Py8MassGun::generatePartonsAndHadronize ( )
overridevirtual

Implements gen::Py8InterfaceBase.

Definition at line 46 of file Py8MassGun.cc.

46  {
47  fMasterGen->event.reset();
48  size_t pSize = fPartIDs.size();
49  if (pSize > 2)
50  return false;
51 
52  // Pick a flat mass range
53  double phi, eta, the, ee, pp;
54  double m0 = (fMaxM - fMinM) * randomEngine().flat() + fMinM;
55  // Global eta
57 
58  if (pSize == 2) {
59  // Masses.
60  double m1 = fMasterGen->particleData.m0(fPartIDs[0]);
61  double m2 = fMasterGen->particleData.m0(fPartIDs[1]);
62 
63  // Energies and absolute momentum in the rest frame.
64  if (m1 + m2 > m0)
65  return false;
66  double e1 = 0.5 * (m0 * m0 + m1 * m1 - m2 * m2) / m0;
67  double e2 = 0.5 * (m0 * m0 + m2 * m2 - m1 * m1) / m0;
68  double pAbs = 0.5 * sqrt((m0 - m1 - m2) * (m0 + m1 + m2) * (m0 + m1 - m2) * (m0 - m1 + m2)) / m0;
69  // Isotropic angles in rest frame give three-momentum.
70  double cosTheta = 2. * randomEngine().flat() - 1.;
71  double sinTheta = sqrt(1. - cosTheta * cosTheta);
72  phi = 2. * M_PI * randomEngine().flat();
73 
74  double pX = pAbs * sinTheta * cos(phi);
75  double pY = pAbs * sinTheta * sin(phi);
76  double pZ = pAbs * cosTheta;
77 
78  (fMasterGen->event).append(fPartIDs[0], 1, 0, 0, pX, pY, pZ, e1, m1);
79  (fMasterGen->event).append(fPartIDs[1], 1, 0, 0, -pX, -pY, -pZ, e2, m2);
80  } else {
81  (fMasterGen->event).append(fPartIDs[0], 1, 0, 0, 0.0, 0.0, 0.0, m0, m0);
82  }
83 
84  //now the boost (from input params)
85  if (fMomMode == 0) {
86  pp = (fMaxP - fMinP) * randomEngine().flat() + fMinP;
87  } else {
88  double pT = (fMaxPt - fMinPt) * randomEngine().flat() + fMinPt;
89  pp = pT * cosh(eta);
90  }
91  ee = sqrt(m0 * m0 + pp * pp);
92 
93  //the boost direction (from input params)
94  //
96  the = 2. * atan(exp(-eta));
97 
98  double betaX = pp / ee * std::sin(the) * std::cos(phi);
99  double betaY = pp / ee * std::sin(the) * std::sin(phi);
100  double betaZ = pp / ee * std::cos(the);
101 
102  // boost all particles
103  //
104  (fMasterGen->event).bst(betaX, betaY, betaZ);
105 
106  if (!fMasterGen->next())
107  return false;
108 
109  event().reset(new HepMC::GenEvent);
110  return toHepMC.fill_next_event(fMasterGen->event, event().get());
111  }

References mps_setup::append, funct::cos(), StorageManager_cfg::e1, PVValHelper::eta, gen::BaseHadronizer::event(), JetChargeProducer_cfi::exp, gen::P8RndmEngine::flat(), gen::Py8InterfaceBase::fMasterGen, fMaxEta, fMaxM, fMaxP, gen::Py8GunBase::fMaxPhi, fMaxPt, fMinEta, fMinM, fMinP, gen::Py8GunBase::fMinPhi, fMinPt, fMomMode, gen::Py8GunBase::fPartIDs, get, M_PI, createTree::pp, PVValHelper::pT, gen::Py8InterfaceBase::randomEngine(), funct::sin(), mathSSE::sqrt(), and gen::Py8InterfaceBase::toHepMC.

Member Data Documentation

◆ fMaxEta

double gen::Py8MassGun::fMaxEta
private

Definition at line 20 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxM

double gen::Py8MassGun::fMaxM
private

Definition at line 26 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxP

double gen::Py8MassGun::fMaxP
private

Definition at line 22 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxPt

double gen::Py8MassGun::fMaxPt
private

Definition at line 24 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinEta

double gen::Py8MassGun::fMinEta
private

Definition at line 19 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinM

double gen::Py8MassGun::fMinM
private

Definition at line 25 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinP

double gen::Py8MassGun::fMinP
private

Definition at line 21 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinPt

double gen::Py8MassGun::fMinPt
private

Definition at line 23 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMomMode

int gen::Py8MassGun::fMomMode
private

Definition at line 27 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

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::Py8GunBase::fMinPhi
double fMinPhi
Definition: Py8GunBase.h:58
gen::P8RndmEngine::flat
double flat() override
Definition: P8RndmEngine.cc:7
gen::Py8MassGun::fMaxM
double fMaxM
Definition: Py8MassGun.cc:26
gen::Py8MassGun::fMinPt
double fMinPt
Definition: Py8MassGun.cc:23
gen::Py8MassGun::fMinP
double fMinP
Definition: Py8MassGun.cc:21
HepMC::GenEvent
Definition: hepmc_rootio.cc:9
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
PVValHelper::eta
Definition: PVValidationHelpers.h:69
PVValHelper::pT
Definition: PVValidationHelpers.h:70
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
gen::Py8InterfaceBase::randomEngine
P8RndmEngine & randomEngine()
Definition: Py8InterfaceBase.h:44
edm::ParameterSet
Definition: ParameterSet.h:47
mps_setup.append
append
Definition: mps_setup.py:85
StorageManager_cfg.e1
e1
Definition: StorageManager_cfg.py:16
gen::Py8MassGun::fMinEta
double fMinEta
Definition: Py8MassGun.cc:19
gen::Py8GunBase::fPartIDs
std::vector< int > fPartIDs
Definition: Py8GunBase.h:57
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:49
gen::Py8MassGun::fMaxEta
double fMaxEta
Definition: Py8MassGun.cc:20
get
#define get
gen::Py8MassGun::fMinM
double fMinM
Definition: Py8MassGun.cc:25
DDAxes::phi
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
gen::Py8MassGun::fMaxPt
double fMaxPt
Definition: Py8MassGun.cc:24
gen::Py8InterfaceBase::toHepMC
HepMC::Pythia8ToHepMC toHepMC
Definition: Py8InterfaceBase.h:49
gen::Py8MassGun::fMomMode
int fMomMode
Definition: Py8MassGun.cc:27
gen::Py8MassGun::fMaxP
double fMaxP
Definition: Py8MassGun.cc:22
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
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