CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FlatRandomMultiParticlePGunProducer.cc
Go to the documentation of this file.
1 #include <ostream>
2 
4 
7 
13 #include "CLHEP/Random/RandFlat.h"
14 
15 //#define DebugLog
16 using namespace edm;
17 
19  : BaseFlatGunProducer(pset) {
20  ParameterSet pgunParams = pset.getParameter<ParameterSet>("PGunParameters");
21  fProbParticle_ = pgunParams.getParameter<std::vector<double> >("ProbParts");
22  fMinP_ = pgunParams.getParameter<double>("MinP");
23  fMaxP_ = pgunParams.getParameter<double>("MaxP");
24  if (fProbParticle_.size() != fPartIDs.size())
25  throw cms::Exception("Configuration") << "Not all probabilities given for all particle types "
26  << fProbParticle_.size() << ":" << fPartIDs.size() << " need them to match\n";
27 
28  produces<HepMCProduct>("unsmeared");
29  produces<GenEventInfoProduct>();
30 #ifdef DebugLog
31  std::cout << "Internal FlatRandomPGun is initialzed for " << fPartIDs.size() << " particles in momentum range "
32  << fMinP_ << ":" << fMaxP_ << std::endl;
33  for (unsigned int k = 0; k < fPartIDs.size(); ++k)
34  std::cout << " [" << k << "] " << fPartIDs[k] << ":" << fProbParticle_[k];
35  std::cout << std::endl;
36 #endif
37  for (unsigned int k = 1; k < fProbParticle_.size(); ++k)
38  fProbParticle_[k] += fProbParticle_[k - 1];
39  for (unsigned int k = 0; k < fProbParticle_.size(); ++k)
40  fProbParticle_[k] /= fProbParticle_[fProbParticle_.size() - 1];
41 #ifdef DebugLog
42  std::cout << "Corrected probabilities:";
43  for (unsigned int k = 0; k < fProbParticle_.size(); ++k)
44  std::cout << " " << fProbParticle_[k];
45  std::cout << std::endl;
46 #endif
47 }
48 
50 
53  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
54 
55 #ifdef DebugLog
56  if (fVerbosity > 0)
57  std::cout << "FlatRandomMultiParticlePGunProducer: Begin New Event Generation" << std::endl;
58 #endif
59 
60  // event loop (well, another step in it...)
61  // no need to clean up GenEvent memory - done in HepMCProduct
62  // here re-create fEvt (memory)
63  //
64  fEvt = new HepMC::GenEvent();
65 
66  // now actualy, cook up the event from PDGTable and gun parameters
67  //
68 
69  // 1st, primary vertex
70  //
71  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
72 
73  // loop over particles
74  //
75  int barcode(0), PartID(fPartIDs[0]);
76  double r1 = CLHEP::RandFlat::shoot(engine, 0., 1.);
77  for (unsigned int ip = 0; ip < fPartIDs.size(); ip++) {
78  if (r1 <= fProbParticle_[ip]) {
79  PartID = fPartIDs[ip];
80  break;
81  }
82  }
83 #ifdef DebugLog
84  if (fVerbosity > 0)
85  std::cout << "Random " << r1 << " PartID " << PartID << std::endl;
86 #endif
87  double mom = CLHEP::RandFlat::shoot(engine, fMinP_, fMaxP_);
88  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta);
89  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
90  const HepPDT::ParticleData* PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID)));
91  double mass = PData->mass().value();
92  double energy = sqrt(mom * mom + mass * mass);
93  double theta = 2. * atan(exp(-eta));
94  double px = mom * sin(theta) * cos(phi);
95  double py = mom * sin(theta) * sin(phi);
96  double pz = mom * cos(theta);
97 
98  HepMC::FourVector p(px, py, pz, energy);
99  HepMC::GenParticle* Part = new HepMC::GenParticle(p, PartID, 1);
100  barcode++;
101  Part->suggest_barcode(barcode);
102  Vtx->add_particle_out(Part);
103 
104  if (fAddAntiParticle) {
105  HepMC::FourVector ap(-px, -py, -pz, energy);
106  int APartID = (PartID == 22 || PartID == 23) ? PartID : -PartID;
107  HepMC::GenParticle* APart = new HepMC::GenParticle(ap, APartID, 1);
108  barcode++;
109  APart->suggest_barcode(barcode);
110  Vtx->add_particle_out(APart);
111  }
112 
113  fEvt->add_vertex(Vtx);
114  fEvt->set_event_number(e.id().event());
115  fEvt->set_signal_process_id(20);
116 
117 #ifdef DebugLog
118  if (fVerbosity > 0)
119  fEvt->print();
120 #endif
121 
122  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct());
123  BProduct->addHepMCData(fEvt);
124  e.put(std::move(BProduct), "unsmeared");
125 
126  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
127  e.put(std::move(genEventInfo));
128 #ifdef DebugLog
129  if (fVerbosity > 0)
130  std::cout << " FlatRandomMultiParticlePGunProducer : Event Generation Done " << std::endl;
131 #endif
132 }
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:40
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Theta< T > theta() const
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
ESHandle< HepPDT::ParticleDataTable > fPDGTable
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::vector< int > fPartIDs
HepPDT::ParticleData ParticleData
edm::EventID id() const
Definition: EventBase.h:59
HLT enums.
StreamID streamID() const
Definition: Event.h:96
def move(src, dest)
Definition: eostools.py:511
void produce(Event &e, const EventSetup &es) override