CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
FlatRandomOneOverPtGunProducer.cc
Go to the documentation of this file.
1 #include <ostream>
2 
4 
7 
13 
14 #include "CLHEP/Random/RandFlat.h"
15 #include "CLHEP/Units/GlobalSystemOfUnits.h"
16 using namespace edm;
17 
19  : BaseFlatGunProducer(pset) {
20  edm::ParameterSet defpset;
21  edm::ParameterSet pgun_params = pset.getParameter<ParameterSet>("PGunParameters");
22 
23  fMinOneOverPt = pgun_params.getParameter<double>("MinOneOverPt");
24  fMaxOneOverPt = pgun_params.getParameter<double>("MaxOneOverPt");
25 
26  produces<HepMCProduct>("unsmeared");
27  produces<GenEventInfoProduct>();
28 
29  edm::LogInfo("ParticleGun") << "FlatRandomOneOverPtGunProducer: initialized with minimum and maximum 1/pt "
30  << fMinOneOverPt << ":" << fMaxOneOverPt;
31 }
32 
34  // no need to cleanup GenEvent memory - done in HepMCProduct
35 }
36 
39  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
40 
41  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Begin New Event Generation";
42 
43  // event loop (well, another step in it...)
44 
45  // no need to clean up GenEvent memory - done in HepMCProduct
46  //
47 
48  // here re-create fEvt (memory)
49  //
50  fEvt = new HepMC::GenEvent();
51 
52  // now actualy, cook up the event from PDGTable and gun parameters
53  //
54  // 1st, primary vertex
55  //
56  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
57 
58  // loop over particles
59  //
60  int barcode = 1;
61  for (unsigned int ip = 0; ip < fPartIDs.size(); ++ip) {
62  double xx = CLHEP::RandFlat::shoot(engine, 0.0, 1.0);
63  double pt = std::exp((1. - xx) * std::log(fMinOneOverPt) + xx * std::log(fMaxOneOverPt));
64  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta);
65  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
66  if (pt != 0)
67  pt = 1. / pt;
68  int PartID = fPartIDs[ip];
69  const HepPDT::ParticleData* PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID)));
70  double mass = PData->mass().value();
71  double theta = 2. * atan(exp(-eta));
72  double mom = pt / sin(theta);
73  double px = pt * cos(phi);
74  double py = pt * sin(phi);
75  double pz = mom * cos(theta);
76  double energy2 = mom * mom + mass * mass;
77  double energy = sqrt(energy2);
78  HepMC::FourVector p(px, py, pz, energy);
79  HepMC::GenParticle* Part = new HepMC::GenParticle(p, PartID, 1);
80  Part->suggest_barcode(barcode);
81  barcode++;
82  Vtx->add_particle_out(Part);
83  LogDebug("ParticleGun") << "FlatRandomOneOverPtGunProducer: Event generated with pt:eta:phi " << pt << " " << eta
84  << " " << phi << " (" << theta / CLHEP::deg << ":" << phi / CLHEP::deg << ")";
85 
86  if (fAddAntiParticle) {
87  HepMC::FourVector ap(-px, -py, -pz, energy);
88  int APartID = -PartID;
89  if (PartID == 22 || PartID == 23) {
90  APartID = PartID;
91  }
92  HepMC::GenParticle* APart = new HepMC::GenParticle(ap, APartID, 1);
93  APart->suggest_barcode(barcode);
94  barcode++;
95  Vtx->add_particle_out(APart);
96  }
97  }
98 
99  fEvt->add_vertex(Vtx);
100  fEvt->set_event_number(e.id().event());
101  fEvt->set_signal_process_id(20);
102 
103  if (fVerbosity > 0) {
104  fEvt->print();
105  }
106 
107  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct());
108  BProduct->addHepMCData(fEvt);
109  e.put(std::move(BProduct), "unsmeared");
110 
111  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
112  e.put(std::move(genEventInfo));
113 
114  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Event Generation Done ";
115 }
EventNumber_t event() const
Definition: EventID.h:40
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
static std::vector< std::string > checklist log
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Theta< T > theta() const
Exp< T >::type exp(const T &t)
Definition: Exp.h:22
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
def move
Definition: eostools.py:511
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< int > fPartIDs
void produce(Event &e, const EventSetup &es) override
HepPDT::ParticleData ParticleData
Log< level::Info, false > LogInfo
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EventID id() const
Definition: EventBase.h:59
StreamID streamID() const
Definition: Event.h:98
#define LogDebug(id)