CMS 3D CMS Logo

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