CMS 3D CMS Logo

Py8PtotGun.cc
Go to the documentation of this file.
3 
5 
6 namespace gen {
7 
8  class Py8PtotGun : public Py8GunBase {
9  public:
11  ~Py8PtotGun() override {}
12 
13  bool generatePartonsAndHadronize() override;
14  const char* classname() const override;
15 
16  private:
17  // Ptot Gun particle(s) characteristics
18  double fMinEta;
19  double fMaxEta;
20  double fMinPtot;
21  double fMaxPtot;
23  };
24 
25  // implementation
26  //
28  // ParameterSet defpset ;
29  edm::ParameterSet pgun_params = ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
30  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
31  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
32  fMinPtot = pgun_params.getParameter<double>("MinPtot"); // , 0.);
33  fMaxPtot = pgun_params.getParameter<double>("MaxPtot"); // , 0.);
34  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
35  }
36 
38  fMasterGen->event.reset();
39 
40  for (size_t i = 0; i < fPartIDs.size(); i++) {
41  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
42 
43  double phi = (fMaxPhi - fMinPhi) * randomEngine().flat() + fMinPhi;
44  double eta = (fMaxEta - fMinEta) * randomEngine().flat() + fMinEta;
45  double the = 2. * atan(exp(-eta));
46 
47  double pp = (fMaxPtot - fMinPtot) * randomEngine().flat() + fMinPtot;
48 
49  double mass = (fMasterGen->particleData).m0(particleID);
50 
51  double pt = pp * sin(the);
52  double ee = sqrt(pp * pp + mass * mass);
53  double px = pt * cos(phi);
54  double py = pt * sin(phi);
55  double pz = pp * cos(the);
56 
57  if (!((fMasterGen->particleData).isParticle(particleID))) {
59  }
60  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) // quarks
61  (fMasterGen->event).append(particleID, 23, 101, 0, px, py, pz, ee, mass);
62  else if (std::abs(particleID) == 21) // gluons
63  (fMasterGen->event).append(21, 23, 101, 102, px, py, pz, ee, mass);
64  // other
65  else {
66  (fMasterGen->event).append(particleID, 1, 0, 0, px, py, pz, ee, mass);
67  int eventSize = (fMasterGen->event).size() - 1;
68  // -log(flat) = exponential distribution
69  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
70  (fMasterGen->event)[eventSize].tau(tauTmp);
71  }
72 
73  // Here also need to add anti-particle (if any)
74  // otherwise just add a 2nd particle of the same type
75  // (for example, gamma)
76  //
77  if (fAddAntiParticle) {
78  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) { // quarks
79  (fMasterGen->event).append(-particleID, 23, 0, 101, -px, -py, -pz, ee, mass);
80  } else if (std::abs(particleID) == 21) { // gluons
81  (fMasterGen->event).append(21, 23, 102, 101, -px, -py, -pz, ee, mass);
82  } else {
83  if ((fMasterGen->particleData).isParticle(-particleID)) {
84  (fMasterGen->event).append(-particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
85  } else {
86  (fMasterGen->event).append(particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
87  }
88  int eventSize = (fMasterGen->event).size() - 1;
89  // -log(flat) = exponential distribution
90  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
91  (fMasterGen->event)[eventSize].tau(tauTmp);
92  }
93  }
94  }
95 
96  if (!fMasterGen->next())
97  return false;
98  evtGenDecay();
99 
100  event().reset(new HepMC::GenEvent);
101  return toHepMC.fill_next_event(fMasterGen->event, event().get());
102  }
103 
104  const char* Py8PtotGun::classname() const { return "Py8PtotGun"; }
105 
107 
108 } // namespace gen
109 
110 using gen::Pythia8PtotGun;
gen::Py8InterfaceBase::fMasterGen
std::unique_ptr< Pythia8::Pythia > fMasterGen
Definition: Py8InterfaceBase.h:44
gen::Py8PtotGun::fMaxPtot
double fMaxPtot
Definition: Py8PtotGun.cc:21
mps_fire.i
i
Definition: mps_fire.py:355
gen::Py8GunBase::fMinPhi
double fMinPhi
Definition: Py8GunBase.h:58
gen::Py8PtotGun::fAddAntiParticle
bool fAddAntiParticle
Definition: Py8PtotGun.cc:22
metsig::tau
Definition: SignAlgoResolutions.h:49
gen::Py8PtotGun::classname
const char * classname() const override
Definition: Py8PtotGun.cc:104
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
gen::P8RndmEngine::flat
double flat() override
Definition: P8RndmEngine.cc:7
multPhiCorr_741_25nsDY_cfi.py
py
Definition: multPhiCorr_741_25nsDY_cfi.py:12
gen::Py8PtotGun::generatePartonsAndHadronize
bool generatePartonsAndHadronize() override
Definition: Py8PtotGun.cc:37
ExternalDecayDriver.h
gen::Py8PtotGun::fMinPtot
double fMinPtot
Definition: Py8PtotGun.cc:20
HepMC::GenEvent
Definition: hepmc_rootio.cc:9
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
gen::Py8PtotGun
Definition: Py8PtotGun.cc:8
EgammaObjectsElectrons_cfi.particleID
particleID
Definition: EgammaObjectsElectrons_cfi.py:4
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
gen::Py8PtotGun::~Py8PtotGun
~Py8PtotGun() override
Definition: Py8PtotGun.cc:11
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::GeneratorFilter
Definition: GeneratorFilter.h:40
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::Py8PtotGun::Py8PtotGun
Py8PtotGun(edm::ParameterSet const &)
Definition: Py8PtotGun.cc:27
gen
Definition: PythiaDecays.h:13
gen::Py8InterfaceBase::randomEngine
P8RndmEngine & randomEngine()
Definition: Py8InterfaceBase.h:41
gen::Py8PtotGun::fMaxEta
double fMaxEta
Definition: Py8PtotGun.cc:19
edm::ParameterSet
Definition: ParameterSet.h:36
GeneratorFilter.h
mps_setup.append
append
Definition: mps_setup.py:85
gen::Py8GunBase::fPartIDs
std::vector< int > fPartIDs
Definition: Py8GunBase.h:57
get
#define get
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
gen::Pythia8PtotGun
edm::GeneratorFilter< gen::Py8PtotGun, gen::ExternalDecayDriver > Pythia8PtotGun
Definition: Py8PtotGun.cc:106
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
gen::Py8GunBase
Definition: Py8GunBase.h:40
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
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
gen::Py8GunBase::fMaxPhi
double fMaxPhi
Definition: Py8GunBase.h:59
Py8GunBase.h
event
Definition: event.py:1
gen::Py8PtotGun::fMinEta
double fMinEta
Definition: Py8PtotGun.cc:18
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443