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

Constructor & Destructor Documentation

◆ Py8MassGun()

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

Definition at line 34 of file Py8MassGun.cc.

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

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

◆ ~Py8MassGun()

gen::Py8MassGun::~Py8MassGun ( )
inlineoverride

Definition at line 14 of file Py8MassGun.cc.

14 {}

Member Function Documentation

◆ classname()

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

Implements gen::Py8InterfaceBase.

Definition at line 115 of file Py8MassGun.cc.

115 { return "Py8MassGun"; }

◆ generatePartonsAndHadronize()

bool gen::Py8MassGun::generatePartonsAndHadronize ( )
overridevirtual

Implements gen::Py8InterfaceBase.

Definition at line 48 of file Py8MassGun.cc.

48  {
49  fMasterGen->event.reset();
50  size_t pSize = fPartIDs.size();
51  if (pSize > 2)
52  return false;
53 
54  // Pick a flat mass range
55  double phi, eta, the, ee, pp;
56  double m0 = (fMaxM - fMinM) * randomEngine().flat() + fMinM;
57  // Global eta
59 
60  if (pSize == 2) {
61  // Masses.
62  double m1 = fMasterGen->particleData.m0(fPartIDs[0]);
63  double m2 = fMasterGen->particleData.m0(fPartIDs[1]);
64 
65  // Energies and absolute momentum in the rest frame.
66  if (m1 + m2 > m0)
67  return false;
68  double e1 = 0.5 * (m0 * m0 + m1 * m1 - m2 * m2) / m0;
69  double e2 = 0.5 * (m0 * m0 + m2 * m2 - m1 * m1) / m0;
70  double pAbs = 0.5 * sqrt((m0 - m1 - m2) * (m0 + m1 + m2) * (m0 + m1 - m2) * (m0 - m1 + m2)) / m0;
71  // Isotropic angles in rest frame give three-momentum.
72  double cosTheta = 2. * randomEngine().flat() - 1.;
73  double sinTheta = sqrt(1. - cosTheta * cosTheta);
74  phi = 2. * M_PI * randomEngine().flat();
75 
76  double pX = pAbs * sinTheta * cos(phi);
77  double pY = pAbs * sinTheta * sin(phi);
78  double pZ = pAbs * cosTheta;
79 
80  (fMasterGen->event).append(fPartIDs[0], 1, 0, 0, pX, pY, pZ, e1, m1);
81  (fMasterGen->event).append(fPartIDs[1], 1, 0, 0, -pX, -pY, -pZ, e2, m2);
82  } else {
83  (fMasterGen->event).append(fPartIDs[0], 1, 0, 0, 0.0, 0.0, 0.0, m0, m0);
84  }
85 
86  //now the boost (from input params)
87  if (fMomMode == 0) {
88  pp = (fMaxP - fMinP) * randomEngine().flat() + fMinP;
89  } else {
90  double pT = (fMaxPt - fMinPt) * randomEngine().flat() + fMinPt;
91  pp = pT * cosh(eta);
92  }
93  ee = sqrt(m0 * m0 + pp * pp);
94 
95  //the boost direction (from input params)
96  //
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(), 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, callgraph::m2, 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 22 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxM

double gen::Py8MassGun::fMaxM
private

Definition at line 28 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxP

double gen::Py8MassGun::fMaxP
private

Definition at line 24 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMaxPt

double gen::Py8MassGun::fMaxPt
private

Definition at line 26 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinEta

double gen::Py8MassGun::fMinEta
private

Definition at line 21 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinM

double gen::Py8MassGun::fMinM
private

Definition at line 27 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinP

double gen::Py8MassGun::fMinP
private

Definition at line 23 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMinPt

double gen::Py8MassGun::fMinPt
private

Definition at line 25 of file Py8MassGun.cc.

Referenced by generatePartonsAndHadronize(), and Py8MassGun().

◆ fMomMode

int gen::Py8MassGun::fMomMode
private

Definition at line 29 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:28
gen::Py8MassGun::fMinPt
double fMinPt
Definition: Py8MassGun.cc:25
gen::Py8MassGun::fMinP
double fMinP
Definition: Py8MassGun.cc:23
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:70
PVValHelper::pT
Definition: PVValidationHelpers.h:71
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:21
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:22
get
#define get
gen::Py8MassGun::fMinM
double fMinM
Definition: Py8MassGun.cc:27
DDAxes::phi
callgraph.m2
m2
Definition: callgraph.py:38
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
gen::Py8MassGun::fMaxPt
double fMaxPt
Definition: Py8MassGun.cc:26
gen::Py8InterfaceBase::toHepMC
HepMC::Pythia8ToHepMC toHepMC
Definition: Py8InterfaceBase.h:49
gen::Py8MassGun::fMomMode
int fMomMode
Definition: Py8MassGun.cc:29
gen::Py8MassGun::fMaxP
double fMaxP
Definition: Py8MassGun.cc:24
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