CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FlatRandomPtGunProducer.cc
Go to the documentation of this file.
1 /*
2  * \author Julia Yarba
3  */
4 
5 #include <ostream>
6 
8 
11 
16 
17 #include "CLHEP/Random/RandFlat.h"
18 
19 using namespace edm;
20 using namespace std;
21 
24 {
25 
26 
27  ParameterSet defpset ;
28  ParameterSet pgun_params =
29  pset.getParameter<ParameterSet>("PGunParameters") ;
30 
31  fMinPt = pgun_params.getParameter<double>("MinPt");
32  fMaxPt = pgun_params.getParameter<double>("MaxPt");
33 
34  produces<HepMCProduct>();
35  produces<GenEventInfoProduct>();
36 }
37 
39 {
40  // no need to cleanup GenEvent memory - done in HepMCProduct
41 }
42 
44 {
46  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
47 
48  if ( fVerbosity > 0 )
49  {
50  cout << " FlatRandomPtGunProducer : Begin New Event Generation" << endl ;
51  }
52  // event loop (well, another step in it...)
53 
54  // no need to clean up GenEvent memory - done in HepMCProduct
55  //
56 
57  // here re-create fEvt (memory)
58  //
59  fEvt = new HepMC::GenEvent() ;
60 
61  // now actualy, cook up the event from PDGTable and gun parameters
62  //
63  // 1st, primary vertex
64  //
65  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
66 
67  // loop over particles
68  //
69  int barcode = 1 ;
70  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip)
71  {
72  double pt = CLHEP::RandFlat::shoot(engine, fMinPt, fMaxPt) ;
73  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta) ;
74  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi) ;
75  int PartID = fPartIDs[ip] ;
76  const HepPDT::ParticleData*
77  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
78  double mass = PData->mass().value() ;
79  double theta = 2.*atan(exp(-eta)) ;
80  double mom = pt/sin(theta) ;
81  double px = pt*cos(phi) ;
82  double py = pt*sin(phi) ;
83  double pz = mom*cos(theta) ;
84  double energy2= mom*mom + mass*mass ;
85  double energy = sqrt(energy2) ;
86  HepMC::FourVector p(px,py,pz,energy) ;
87  HepMC::GenParticle* Part =
88  new HepMC::GenParticle(p,PartID,1);
89  Part->suggest_barcode( barcode ) ;
90  barcode++ ;
91  Vtx->add_particle_out(Part);
92 
93  if ( fAddAntiParticle )
94  {
95  HepMC::FourVector ap(-px,-py,-pz,energy) ;
96  int APartID = -PartID ;
97  if ( PartID == 22 || PartID == 23 )
98  {
99  APartID = PartID ;
100  }
101  HepMC::GenParticle* APart =
102  new HepMC::GenParticle(ap,APartID,1);
103  APart->suggest_barcode( barcode ) ;
104  barcode++ ;
105  Vtx->add_particle_out(APart) ;
106  }
107 
108  }
109 
110  fEvt->add_vertex(Vtx) ;
111  fEvt->set_event_number(e.id().event()) ;
112  fEvt->set_signal_process_id(20) ;
113 
114  if ( fVerbosity > 0 )
115  {
116  fEvt->print() ;
117  }
118 
119  auto_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
120  BProduct->addHepMCData( fEvt );
121  e.put(BProduct);
122 
123  auto_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
124  e.put(genEventInfo);
125 
126  if ( fVerbosity > 0 )
127  {
128  // for testing purpose only
129  // fEvt->print() ; // prints empty info after it's made into edm::Event
130  cout << " FlatRandomPtGunProducer : Event Generation Done " << endl;
131  }
132 }
133 //#include "FWCore/Framework/interface/MakerMacros.h"
134 //DEFINE_FWK_MODULE(FlatRandomPtGunProducer);
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:44
virtual void produce(Event &e, const EventSetup &es) override
FlatRandomPtGunProducer(const ParameterSet &pset)
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
Geom::Theta< T > theta() const
T eta() const
ESHandle< HepPDT::ParticleDataTable > fPDGTable
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
T sqrt(T t)
Definition: SSEVec.h:48
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
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &) const =0
Use this engine in event methods.
edm::EventID id() const
Definition: EventBase.h:56
StreamID streamID() const
Definition: Event.h:75
tuple cout
Definition: gather_cfg.py:121
Definition: DDAxes.h:10