CMS 3D CMS Logo

Py8EGun.cc
Go to the documentation of this file.
1 
2 #include <memory>
3 
6 
8 
9 namespace gen {
10 
11  class Py8EGun : public Py8GunBase {
12  public:
13  Py8EGun(edm::ParameterSet const&);
14  ~Py8EGun() override {}
15 
16  bool generatePartonsAndHadronize() override;
17  const char* classname() const override;
18 
19  private:
20  // EGun particle(s) characteristics
21  double fMinEta;
22  double fMaxEta;
23  double fMinE;
24  double fMaxE;
26  };
27 
28  // implementation
29  //
31  // ParameterSet defpset ;
32  edm::ParameterSet pgun_params = ps.getParameter<edm::ParameterSet>("PGunParameters"); // , defpset ) ;
33  fMinEta = pgun_params.getParameter<double>("MinEta"); // ,-2.2);
34  fMaxEta = pgun_params.getParameter<double>("MaxEta"); // , 2.2);
35  fMinE = pgun_params.getParameter<double>("MinE"); // , 0.);
36  fMaxE = pgun_params.getParameter<double>("MaxE"); // , 0.);
37  fAddAntiParticle = pgun_params.getParameter<bool>("AddAntiParticle"); //, false) ;
38  }
39 
41  fMasterGen->event.reset();
42 
43  int colorindex = 101;
44 
45  for (size_t i = 0; i < fPartIDs.size(); i++) {
46  int particleID = fPartIDs[i]; // this is PDG - need to convert to Py8 ???
47  if ((std::abs(particleID) <= 6 || particleID == 21) && !(fAddAntiParticle)) {
48  throw cms::Exception("PythiaError") << "Attempting to generate quarks or gluons without setting "
49  "AddAntiParticle to true. This will not handle color properly."
50  << std::endl;
51  }
52 
53  double phi = (fMaxPhi - fMinPhi) * randomEngine().flat() + fMinPhi;
54  double ee = (fMaxE - fMinE) * randomEngine().flat() + fMinE;
55  double eta = (fMaxEta - fMinEta) * randomEngine().flat() + fMinEta;
56  double the = 2. * atan(exp(-eta));
57 
58  double mass = (fMasterGen->particleData).m0(particleID);
59 
60  double pp = sqrt(ee * ee - mass * mass);
61  double px = pp * sin(the) * cos(phi);
62  double py = pp * sin(the) * sin(phi);
63  double pz = pp * cos(the);
64 
65  if (!((fMasterGen->particleData).isParticle(particleID))) {
66  particleID = std::fabs(particleID);
67  }
68  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) { // quarks
69  (fMasterGen->event).append(particleID, 23, colorindex, 0, px, py, pz, ee, mass);
70  if (!fAddAntiParticle)
71  colorindex += 1;
72  } else if (std::abs(particleID) == 21) { // gluons
73  (fMasterGen->event).append(21, 23, colorindex, colorindex + 1, px, py, pz, ee, mass);
74  if (!fAddAntiParticle) {
75  colorindex += 2;
76  }
77  }
78  // other
79  else {
80  (fMasterGen->event).append(particleID, 1, 0, 0, px, py, pz, ee, mass);
81  int eventSize = (fMasterGen->event).size() - 1;
82  // -log(flat) = exponential distribution
83  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
84  (fMasterGen->event)[eventSize].tau(tauTmp);
85  }
86 
87  // Here also need to add anti-particle (if any)
88  // otherwise just add a 2nd particle of the same type
89  // (for example, gamma)
90  //
91  if (fAddAntiParticle) {
92  if (1 <= std::abs(particleID) && std::abs(particleID) <= 6) { // quarks
93  (fMasterGen->event).append(-particleID, 23, 0, colorindex, -px, -py, -pz, ee, mass);
94  colorindex += 1;
95  } else if (std::abs(particleID) == 21) { // gluons
96  (fMasterGen->event).append(21, 23, colorindex + 1, colorindex, -px, -py, -pz, ee, mass);
97  colorindex += 2;
98  } else {
99  if ((fMasterGen->particleData).isParticle(-particleID)) {
100  (fMasterGen->event).append(-particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
101  } else {
102  (fMasterGen->event).append(particleID, 1, 0, 0, -px, -py, -pz, ee, mass);
103  }
104  int eventSize = (fMasterGen->event).size() - 1;
105  // -log(flat) = exponential distribution
106  double tauTmp = -(fMasterGen->event)[eventSize].tau0() * log(randomEngine().flat());
107  (fMasterGen->event)[eventSize].tau(tauTmp);
108  }
109  }
110  }
111 
112  if (!fMasterGen->next())
113  return false;
114  evtGenDecay();
115 
116  event() = std::make_unique<HepMC::GenEvent>();
117  return toHepMC.fill_next_event(fMasterGen->event, event().get());
118  }
119 
120  const char* Py8EGun::classname() const { return "Py8EGun"; }
121 
123 
124 } // namespace gen
125 
126 using gen::Pythia8EGun;
gen::Py8InterfaceBase::fMasterGen
std::unique_ptr< Pythia8::Pythia > fMasterGen
Definition: Py8InterfaceBase.h:47
gen::Py8EGun::generatePartonsAndHadronize
bool generatePartonsAndHadronize() override
Definition: Py8EGun.cc:40
mps_fire.i
i
Definition: mps_fire.py:428
gen::Py8GunBase::fMinPhi
double fMinPhi
Definition: Py8GunBase.h:58
gen::Py8EGun::fMinEta
double fMinEta
Definition: Py8EGun.cc:21
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
ExternalDecayDriver.h
gen::Py8EGun::classname
const char * classname() const override
Definition: Py8EGun.cc:120
gen::Pythia8EGun
edm::GeneratorFilter< gen::Py8EGun, gen::ExternalDecayDriver > Pythia8EGun
Definition: Py8EGun.cc:122
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
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
gen::Py8EGun::~Py8EGun
~Py8EGun() override
Definition: Py8EGun.cc:14
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::Py8EGun::Py8EGun
Py8EGun(edm::ParameterSet const &)
Definition: Py8EGun.cc:30
gen
Definition: PythiaDecays.h:13
gen::Py8InterfaceBase::randomEngine
P8RndmEngine & randomEngine()
Definition: Py8InterfaceBase.h:44
edm::ParameterSet
Definition: ParameterSet.h:47
GeneratorFilter.h
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:23
get
#define get
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
gen::Py8EGun::fAddAntiParticle
bool fAddAntiParticle
Definition: Py8EGun.cc:25
gen::BaseHadronizer::event
std::unique_ptr< HepMC::GenEvent > & event()
Definition: BaseHadronizer.h:86
gen::Py8GunBase
Definition: Py8GunBase.h:40
Exception
Definition: hltDiff.cc:246
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
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:22
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::Py8EGun::fMaxE
double fMaxE
Definition: Py8EGun.cc:24
gen::Py8EGun
Definition: Py8EGun.cc:11
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443