CMS 3D CMS Logo

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