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 
14 
15 
16 using namespace edm;
17 using namespace std;
18 
21 {
22 
23 
24  ParameterSet defpset ;
25  ParameterSet pgun_params =
26  pset.getParameter<ParameterSet>("PGunParameters") ;
27 
28  fMinPt = pgun_params.getParameter<double>("MinPt");
29  fMaxPt = pgun_params.getParameter<double>("MaxPt");
30 
31  produces<HepMCProduct>();
32  produces<GenEventInfoProduct>();
33 }
34 
36 {
37  // no need to cleanup GenEvent memory - done in HepMCProduct
38 }
39 
41 {
42 
43  if ( fVerbosity > 0 )
44  {
45  cout << " FlatRandomPtGunProducer : Begin New Event Generation" << endl ;
46  }
47  // event loop (well, another step in it...)
48 
49  // no need to clean up GenEvent memory - done in HepMCProduct
50  //
51 
52  // here re-create fEvt (memory)
53  //
54  fEvt = new HepMC::GenEvent() ;
55 
56  // now actualy, cook up the event from PDGTable and gun parameters
57  //
58  // 1st, primary vertex
59  //
60  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0.,0.,0.));
61 
62  // loop over particles
63  //
64  int barcode = 1 ;
65  for (unsigned int ip=0; ip<fPartIDs.size(); ++ip)
66  {
67 
68  double pt = fRandomGenerator->fire(fMinPt, fMaxPt) ;
69  double eta = fRandomGenerator->fire(fMinEta, fMaxEta) ;
70  double phi = fRandomGenerator->fire(fMinPhi, fMaxPhi) ;
71  int PartID = fPartIDs[ip] ;
72  const HepPDT::ParticleData*
73  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
74  double mass = PData->mass().value() ;
75  double theta = 2.*atan(exp(-eta)) ;
76  double mom = pt/sin(theta) ;
77  double px = pt*cos(phi) ;
78  double py = pt*sin(phi) ;
79  double pz = mom*cos(theta) ;
80  double energy2= mom*mom + mass*mass ;
81  double energy = sqrt(energy2) ;
82  HepMC::FourVector p(px,py,pz,energy) ;
83  HepMC::GenParticle* Part =
84  new HepMC::GenParticle(p,PartID,1);
85  Part->suggest_barcode( barcode ) ;
86  barcode++ ;
87  Vtx->add_particle_out(Part);
88 
89  if ( fAddAntiParticle )
90  {
91  HepMC::FourVector ap(-px,-py,-pz,energy) ;
92  int APartID = -PartID ;
93  if ( PartID == 22 || PartID == 23 )
94  {
95  APartID = PartID ;
96  }
97  HepMC::GenParticle* APart =
98  new HepMC::GenParticle(ap,APartID,1);
99  APart->suggest_barcode( barcode ) ;
100  barcode++ ;
101  Vtx->add_particle_out(APart) ;
102  }
103 
104  }
105 
106  fEvt->add_vertex(Vtx) ;
107  fEvt->set_event_number(e.id().event()) ;
108  fEvt->set_signal_process_id(20) ;
109 
110  if ( fVerbosity > 0 )
111  {
112  fEvt->print() ;
113  }
114 
115  auto_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
116  BProduct->addHepMCData( fEvt );
117  e.put(BProduct);
118 
119  auto_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
120  e.put(genEventInfo);
121 
122  if ( fVerbosity > 0 )
123  {
124  // for testing purpose only
125  // fEvt->print() ; // prints empty info after it's made into edm::Event
126  cout << " FlatRandomPtGunProducer : Event Generation Done " << endl;
127  }
128 }
129 //#include "FWCore/Framework/interface/MakerMacros.h"
130 //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
CLHEP::RandFlat * fRandomGenerator
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
edm::EventID id() const
Definition: EventBase.h:56
tuple cout
Definition: gather_cfg.py:121
Definition: DDAxes.h:10