CMS 3D CMS Logo

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 
23  ParameterSet defpset;
24  ParameterSet pgun_params = pset.getParameter<ParameterSet>("PGunParameters");
25 
26  fMinPt = pgun_params.getParameter<double>("MinPt");
27  fMaxPt = pgun_params.getParameter<double>("MaxPt");
28 
29  produces<HepMCProduct>("unsmeared");
30  produces<GenEventInfoProduct>();
31 }
32 
34  // no need to cleanup GenEvent memory - done in HepMCProduct
35 }
36 
39  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
40 
41  if (fVerbosity > 0) {
42  cout << " FlatRandomPtGunProducer : Begin New Event Generation" << endl;
43  }
44  // event loop (well, another step in it...)
45 
46  // no need to clean up GenEvent memory - done in HepMCProduct
47  //
48 
49  // here re-create fEvt (memory)
50  //
51  fEvt = new HepMC::GenEvent();
52 
53  // now actualy, cook up the event from PDGTable and gun parameters
54  //
55  // 1st, primary vertex
56  //
57  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
58 
59  // loop over particles
60  //
61  int barcode = 1;
62  for (unsigned int ip = 0; ip < fPartIDs.size(); ++ip) {
63  double pt = CLHEP::RandFlat::shoot(engine, fMinPt, fMaxPt);
64  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta);
65  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
66  int PartID = fPartIDs[ip];
67  const HepPDT::ParticleData* PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID)));
68  double mass = PData->mass().value();
69  double theta = 2. * atan(exp(-eta));
70  double mom = pt / sin(theta);
71  double px = pt * cos(phi);
72  double py = pt * sin(phi);
73  double pz = mom * cos(theta);
74  double energy2 = mom * mom + mass * mass;
75  double energy = sqrt(energy2);
76  HepMC::FourVector p(px, py, pz, energy);
78  Part->suggest_barcode(barcode);
79  barcode++;
80  Vtx->add_particle_out(Part);
81 
82  if (fAddAntiParticle) {
83  HepMC::FourVector ap(-px, -py, -pz, energy);
84  int APartID = -PartID;
85  if (PartID == 22 || PartID == 23) {
86  APartID = PartID;
87  }
88  HepMC::GenParticle* APart = new HepMC::GenParticle(ap, APartID, 1);
89  APart->suggest_barcode(barcode);
90  barcode++;
91  Vtx->add_particle_out(APart);
92  }
93  }
94 
95  fEvt->add_vertex(Vtx);
96  fEvt->set_event_number(e.id().event());
97  fEvt->set_signal_process_id(20);
98 
99  if (fVerbosity > 0) {
100  fEvt->print();
101  }
102 
103  unique_ptr<HepMCProduct> BProduct(new HepMCProduct());
104  BProduct->addHepMCData(fEvt);
105  e.put(std::move(BProduct), "unsmeared");
106 
107  unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
108  e.put(std::move(genEventInfo));
109 
110  if (fVerbosity > 0) {
111  // for testing purpose only
112  // fEvt->print() ; // prints empty info after it's made into edm::Event
113  cout << " FlatRandomPtGunProducer : Event Generation Done " << endl;
114  }
115 }
116 //#include "FWCore/Framework/interface/MakerMacros.h"
117 //DEFINE_FWK_MODULE(FlatRandomPtGunProducer);
void produce(Event &e, const EventSetup &es) override
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
FlatRandomPtGunProducer(const ParameterSet &pset)
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
ESHandle< HepPDT::ParticleDataTable > fPDGTable
T sqrt(T t)
Definition: SSEVec.h:23
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
HLT enums.
Geom::Theta< T > theta() const
def move(src, dest)
Definition: eostools.py:511