CMS 3D CMS Logo

GaussRandomPThetaGunProducer.cc
Go to the documentation of this file.
1 #include <ostream>
2 
4 
7 
13 
14 #include "CLHEP/Random/RandGaussQ.h"
15 #include "CLHEP/Random/RandFlat.h"
16 
17 //#define DebugLog
18 
19 namespace CLHEP {
20  class HepRandomEngine;
21 }
22 
23 using namespace edm;
24 
25 GaussRandomPThetaGunProducer::GaussRandomPThetaGunProducer(const edm::ParameterSet& pset) : FlatBaseThetaGunProducer(pset) {
26 
27  edm::ParameterSet defpset ;
28  edm::ParameterSet pgun_params =
29  pset.getParameter<edm::ParameterSet>("PGunParameters") ;
30 
31  // doesn't seem necessary to check if pset is empty - if this
32  // is the case, default values will be taken for params
33  fMeanP = pgun_params.getParameter<double>("MeanP");
34  fSigmaP = pgun_params.getParameter<double>("SigmaP");
35  fMeanTheta = 0.5 * (fMinTheta + fMaxTheta);
36  fSigmaTheta = 0.5 * (fMaxTheta - fMinTheta);
37 
38  produces<HepMCProduct>("unsmeared");
39  produces<GenEventInfoProduct>();
40 }
41 
43 
45 #ifdef DebugLog
46  if ( fVerbosity >= 0 )
47  std::cout << "GaussRandomPThetaGunProducer : Begin New Event Generation\n";
48 #endif
50  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
51 
52  // event loop (well, another step in it...)
53 
54  // no need to clean up GenEvent memory - done in HepMCProduct
55 
56  // here re-create fEvt (memory)
57  //
58  fEvt = new HepMC::GenEvent() ;
59 
60  // now actualy, cook up the event from PDGTable and gun parameters
61  //
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  double mom = CLHEP::RandGaussQ::shoot(engine, fMeanP, fSigmaP);
72  double theta = CLHEP::RandGaussQ::shoot(engine, fMeanTheta, fSigmaTheta);
73  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
74  int PartID = fPartIDs[ip] ;
75  const HepPDT::ParticleData*
76  PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
77  double mass = PData->mass().value() ;
78  double energy = sqrt(mom*mom + mass*mass) ;
79  double px = mom*sin(theta)*cos(phi) ;
80  double py = mom*sin(theta)*sin(phi) ;
81  double pz = mom*cos(theta) ;
82 
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 
89  if ( fAddAntiParticle ) {
90  HepMC::FourVector ap(-px,-py,-pz,energy) ;
91  int APartID = -PartID ;
92  if ( PartID == 22 || PartID == 23 ) {
93  APartID = PartID ;
94  }
95  HepMC::GenParticle* APart = new HepMC::GenParticle(ap,APartID,1);
96  APart->suggest_barcode( barcode ) ;
97  barcode++ ;
98  Vtx->add_particle_out(APart) ;
99  }
100 
101  }
102  fEvt->add_vertex(Vtx) ;
103  fEvt->set_event_number(e.id().event()) ;
104  fEvt->set_signal_process_id(20) ;
105 
106 
107 #ifdef DebugLog
108  if ( fVerbosity >= 0 ) fEvt->print() ;
109 #endif
110 
111  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct()) ;
112  BProduct->addHepMCData( fEvt );
113  e.put(std::move(BProduct), "unsmeared");
114 
115  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
116  e.put(std::move(genEventInfo));
117 
118 #ifdef DebugLog
119  if ( fVerbosity >= 0 )
120  std::cout << "GaussRandomPThetaGunProducer : Event Generation Done\n";
121 #endif
122 }
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
void produce(Event &e, const EventSetup &es) override
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
ESHandle< HepPDT::ParticleDataTable > fPDGTable
Geom::Theta< T > theta() const
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
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
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