CMS 3D CMS Logo

ExpoRandomPtGunProducer.cc
Go to the documentation of this file.
1 /*
2  * \author Jean-Roch Vlimant
3  */
4 
5 #include <ostream>
6 
8 
11 
16 
17 #include "CLHEP/Random/RandExponential.h"
18 #include "CLHEP/Random/RandFlat.h"
19 
20 using namespace edm;
21 using namespace std;
22 
25 {
26 
27 
28  ParameterSet defpset ;
29  ParameterSet pgun_params =
30  pset.getParameter<ParameterSet>("PGunParameters") ;
31 
32  fMinPt = pgun_params.getParameter<double>("MinPt");
33  fMaxPt = pgun_params.getParameter<double>("MaxPt");
34 
35  fMeanPt = pgun_params.getParameter<double>("MeanPt");
36 
37  produces<HepMCProduct>("unsmeared");
38  produces<GenEventInfoProduct>();
39 }
40 
42 {
43  // no need to cleanup GenEvent memory - done in HepMCProduct
44 }
45 
47 {
49  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
50 
51  if ( fVerbosity > 0 )
52  {
53  cout << " ExpoRandomPtGunProducer : Begin New Event Generation" << endl ;
54  }
55  // event loop (well, another step in it...)
56 
57  // no need to clean up GenEvent memory - done in HepMCProduct
58  //
59 
60  // here re-create fEvt (memory)
61  //
62  fEvt = new HepMC::GenEvent() ;
63 
64  // now actualy, cook up the event from PDGTable and gun parameters
65  //
66  // 1st, primary vertex
67  //
68  //HepMC::GenVertex* Vtx = new HepMC::GenVertex(CLHEP::HepLorentzVector(0.,0.,0.));
69  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
70 
71  // loop over particles
72  //
73  int barcode = 1 ;
74  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip)
75  {
76 
77  //the max is to ensure you don't generate at 0
78  //the 90% is to get rid of edge effect
79 
80  double pt = std::max(0.00001,0.90*fMinPt)+CLHEP::RandExponential::shoot(engine, fMeanPt);
81  //shoot until in the designated range
82  while (pt<fMinPt || pt>fMaxPt)
83  {pt = std::max(0.00001,0.90*fMinPt) + CLHEP::RandExponential::shoot(engine, fMeanPt);}
84 
85  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta) ;
86  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi) ;
87  int PartID = fPartIDs[ip] ;
88  const HepPDT::ParticleData*
89  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
90  double mass = PData->mass().value() ;
91  double theta = 2.*atan(exp(-eta)) ;
92  double mom = pt/sin(theta) ;
93  double px = pt*cos(phi) ;
94  double py = pt*sin(phi) ;
95  double pz = mom*cos(theta) ;
96  double energy2= mom*mom + mass*mass ;
97  double energy = sqrt(energy2) ;
98  //CLHEP::Hep3Vector p(px,py,pz) ;
99  //HepMC::GenParticle* Part =
100  // new HepMC::GenParticle(CLHEP::HepLorentzVector(p,energy),PartID,1);
101  HepMC::FourVector p(px,py,pz,energy) ;
102  HepMC::GenParticle* Part =
103  new HepMC::GenParticle(p,PartID,1);
104  Part->suggest_barcode( barcode ) ;
105  barcode++ ;
106  Vtx->add_particle_out(Part);
107 
108  if ( fAddAntiParticle )
109  {
110  //CLHEP::Hep3Vector ap(-px,-py,-pz) ;
111  HepMC::FourVector ap(-px,-py,-pz,energy) ;
112  int APartID = -PartID ;
113  if ( PartID == 22 || PartID == 23 )
114  {
115  APartID = PartID ;
116  }
117  //HepMC::GenParticle* APart =
118  // new HepMC::GenParticle(CLHEP::HepLorentzVector(ap,energy),APartID,1);
119  HepMC::GenParticle* APart =
120  new HepMC::GenParticle(ap,APartID,1);
121  APart->suggest_barcode( barcode ) ;
122  barcode++ ;
123  Vtx->add_particle_out(APart) ;
124  }
125 
126  }
127 
128  fEvt->add_vertex(Vtx) ;
129  fEvt->set_event_number(e.id().event()) ;
130  fEvt->set_signal_process_id(20) ;
131 
132  if ( fVerbosity > 0 )
133  {
134  fEvt->print() ;
135  }
136 
137  unique_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
138  BProduct->addHepMCData( fEvt );
139  e.put(std::move(BProduct), "unsmeared");
140 
141  unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
142  e.put(std::move(genEventInfo));
143 
144  if ( fVerbosity > 0 )
145  {
146  // for testing purpose only
147  // fEvt->print() ; // prints empty info after it's made into edm::Event
148  cout << " FlatRandomPtGunProducer : Event Generation Done " << endl;
149  }
150 }
151 
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:41
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
ExpoRandomPtGunProducer(const ParameterSet &pset)
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:18
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
void produce(Event &e, const EventSetup &es) override
edm::EventID id() const
Definition: EventBase.h:59
HLT enums.
StreamID streamID() const
Definition: Event.h:95
def move(src, dest)
Definition: eostools.py:511