CMS 3D CMS Logo

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 
21 
22  edm::ParameterSet defpset ;
23  edm::ParameterSet pgun_params =
24  pset.getParameter<ParameterSet>("PGunParameters") ;
25 
26  fMinOneOverPt = pgun_params.getParameter<double>("MinOneOverPt");
27  fMaxOneOverPt = pgun_params.getParameter<double>("MaxOneOverPt");
28 
29  produces<HepMCProduct>("unsmeared");
30  produces<GenEventInfoProduct>();
31 
32  edm::LogInfo("ParticleGun") << "FlatRandomOneOverPtGunProducer: initialized with minimum and maximum 1/pt " << fMinOneOverPt << ":" << fMaxOneOverPt;
33 }
34 
36  // no need to cleanup GenEvent memory - done in HepMCProduct
37 }
38 
41  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
42 
43 
44  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Begin New Event Generation";
45 
46  // event loop (well, another step in it...)
47 
48  // no need to clean up GenEvent memory - done in HepMCProduct
49  //
50 
51  // here re-create fEvt (memory)
52  //
53  fEvt = new HepMC::GenEvent() ;
54 
55  // now actualy, cook up the event from PDGTable and gun parameters
56  //
57  // 1st, primary vertex
58  //
59  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
60 
61  // loop over particles
62  //
63  int barcode = 1 ;
64  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip) {
65 
66  double xx = CLHEP::RandFlat::shoot(engine, 0.0, 1.0);
67  double pt = std::exp((1.-xx)*std::log(fMinOneOverPt)+
68  xx*std::log(fMaxOneOverPt)) ;
69  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta) ;
70  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi) ;
71  if (pt != 0) pt = 1./pt;
72  int PartID = fPartIDs[ip] ;
73  const HepPDT::ParticleData*
74  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
75  double mass = PData->mass().value() ;
76  double theta = 2.*atan(exp(-eta)) ;
77  double mom = pt/sin(theta) ;
78  double px = pt*cos(phi) ;
79  double py = pt*sin(phi) ;
80  double pz = mom*cos(theta) ;
81  double energy2= mom*mom + mass*mass ;
82  double energy = sqrt(energy2) ;
83  HepMC::FourVector p(px,py,pz,energy) ;
84  HepMC::GenParticle* Part = new HepMC::GenParticle(p,PartID,1);
85  Part->suggest_barcode( barcode ) ;
86  barcode++ ;
87  Vtx->add_particle_out(Part);
88  LogDebug("ParticleGun") << "FlatRandomOneOverPtGunProducer: Event generated with pt:eta:phi " << pt << " " << eta << " " << phi << " (" << theta/CLHEP::deg << ":" << phi/CLHEP::deg << ")";
89 
90  if ( fAddAntiParticle ) {
91  HepMC::FourVector ap(-px,-py,-pz,energy) ;
92  int APartID = -PartID ;
93  if ( PartID == 22 || PartID == 23 ) {
94  APartID = PartID ;
95  }
96  HepMC::GenParticle* APart = new HepMC::GenParticle(ap,APartID,1);
97  APart->suggest_barcode( barcode ) ;
98  barcode++ ;
99  Vtx->add_particle_out(APart) ;
100  }
101 
102  }
103 
104  fEvt->add_vertex(Vtx) ;
105  fEvt->set_event_number(e.id().event()) ;
106  fEvt->set_signal_process_id(20) ;
107 
108  if ( fVerbosity > 0 ) {
109  fEvt->print() ;
110  }
111 
112  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
113  BProduct->addHepMCData( fEvt );
114  e.put(std::move(BProduct), "unsmeared");
115 
116  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
117  e.put(std::move(genEventInfo));
118 
119  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Event Generation Done ";
120 }
#define LogDebug(id)
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
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
void produce(Event &e, const EventSetup &es) override
HepPDT::ParticleData ParticleData
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