CMS 3D CMS Logo

FlatRandomMultiParticlePGunProducer.cc
Go to the documentation of this file.
1 #include <ostream>
2 
4 
7 
13 #include "CLHEP/Random/RandFlat.h"
14 
15 //#define DebugLog
16 using namespace edm;
17 
20  ParameterSet pgunParams = pset.getParameter<ParameterSet>("PGunParameters");
21  fProbParticle_ = pgunParams.getParameter<std::vector<double> >("ProbParts");
22  fMinP_ = pgunParams.getParameter<double>("MinP");
23  fMaxP_ = pgunParams.getParameter<double>("MaxP");
24  if (fProbParticle_.size() != fPartIDs.size())
25  throw cms::Exception("Configuration") << "Not all probabilities given for all particle types "
26  << fProbParticle_.size() << ":" << fPartIDs.size() << " need them to match\n";
27 
28  produces<HepMCProduct>("unsmeared");
29  produces<GenEventInfoProduct>();
30 #ifdef DebugLog
31  std::cout << "Internal FlatRandomPGun is initialzed for " << fPartIDs.size() << " particles in momentum range "
32  << fMinP_ << ":" << fMaxP_ << std::endl;
33  for (unsigned int k = 0; k < fPartIDs.size(); ++k)
34  std::cout << " [" << k << "] " << fPartIDs[k] << ":" << fProbParticle_[k];
35  std::cout << std::endl;
36 #endif
37  for (unsigned int k = 1; k < fProbParticle_.size(); ++k)
39  for (unsigned int k = 0; k < fProbParticle_.size(); ++k)
41 #ifdef DebugLog
42  std::cout << "Corrected probabilities:";
43  for (unsigned int k = 0; k < fProbParticle_.size(); ++k)
44  std::cout << " " << fProbParticle_[k];
45  std::cout << std::endl;
46 #endif
47 }
48 
50 
53  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
54 
55 #ifdef DebugLog
56  if (fVerbosity > 0)
57  std::cout << "FlatRandomMultiParticlePGunProducer: Begin New Event Generation" << std::endl;
58 #endif
59 
60  // event loop (well, another step in it...)
61  // no need to clean up GenEvent memory - done in HepMCProduct
62  // here re-create fEvt (memory)
63  //
64  fEvt = new HepMC::GenEvent();
65 
66  // now actualy, cook up the event from PDGTable and gun parameters
67  //
68 
69  // 1st, primary vertex
70  //
71  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
72 
73  // loop over particles
74  //
75  int barcode(0), PartID(fPartIDs[0]);
76  double r1 = CLHEP::RandFlat::shoot(engine, 0., 1.);
77  for (unsigned int ip = 0; ip < fPartIDs.size(); ip++) {
78  if (r1 <= fProbParticle_[ip]) {
79  PartID = fPartIDs[ip];
80  break;
81  }
82  }
83 #ifdef DebugLog
84  if (fVerbosity > 0)
85  std::cout << "Random " << r1 << " PartID " << PartID << std::endl;
86 #endif
87  double mom = CLHEP::RandFlat::shoot(engine, fMinP_, fMaxP_);
88  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta);
89  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
90  const HepPDT::ParticleData* PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID)));
91  double mass = PData->mass().value();
92  double energy = sqrt(mom * mom + mass * mass);
93  double theta = 2. * atan(exp(-eta));
94  double px = mom * sin(theta) * cos(phi);
95  double py = mom * sin(theta) * sin(phi);
96  double pz = mom * cos(theta);
97 
98  HepMC::FourVector p(px, py, pz, energy);
100  barcode++;
101  Part->suggest_barcode(barcode);
102  Vtx->add_particle_out(Part);
103 
104  if (fAddAntiParticle) {
105  HepMC::FourVector ap(-px, -py, -pz, energy);
106  int APartID = (PartID == 22 || PartID == 23) ? PartID : -PartID;
107  HepMC::GenParticle* APart = new HepMC::GenParticle(ap, APartID, 1);
108  barcode++;
109  APart->suggest_barcode(barcode);
110  Vtx->add_particle_out(APart);
111  }
112 
113  fEvt->add_vertex(Vtx);
114  fEvt->set_event_number(e.id().event());
115  fEvt->set_signal_process_id(20);
116 
117 #ifdef DebugLog
118  if (fVerbosity > 0)
119  fEvt->print();
120 #endif
121 
122  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct());
123  BProduct->addHepMCData(fEvt);
124  e.put(std::move(BProduct), "unsmeared");
125 
126  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
127  e.put(std::move(genEventInfo));
128 #ifdef DebugLog
129  if (fVerbosity > 0)
130  std::cout << " FlatRandomMultiParticlePGunProducer : Event Generation Done " << std::endl;
131 #endif
132 }
edm::BaseFlatGunProducer::fMaxPhi
double fMaxPhi
Definition: BaseFlatGunProducer.h:45
GenEventInfoProduct
Definition: GenEventInfoProduct.h:17
edm::FlatRandomMultiParticlePGunProducer::FlatRandomMultiParticlePGunProducer
FlatRandomMultiParticlePGunProducer(const ParameterSet &pset)
Definition: FlatRandomMultiParticlePGunProducer.cc:18
edm::RandomNumberGenerator::getEngine
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
edm::FlatRandomMultiParticlePGunProducer::fProbParticle_
std::vector< double > fProbParticle_
Definition: FlatRandomMultiParticlePGunProducer.h:18
edm::BaseFlatGunProducer::fAddAntiParticle
bool fAddAntiParticle
Definition: BaseFlatGunProducer.h:61
edm::FlatRandomMultiParticlePGunProducer::~FlatRandomMultiParticlePGunProducer
~FlatRandomMultiParticlePGunProducer() override
Definition: FlatRandomMultiParticlePGunProducer.cc:49
edm::BaseFlatGunProducer::fMaxEta
double fMaxEta
Definition: BaseFlatGunProducer.h:43
multPhiCorr_741_25nsDY_cfi.py
py
Definition: multPhiCorr_741_25nsDY_cfi.py:12
edm
HLT enums.
Definition: AlignableModifier.h:19
RandomNumberGenerator.h
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
edm::BaseFlatGunProducer::fEvt
HepMC::GenEvent * fEvt
Definition: BaseFlatGunProducer.h:48
ZgammaFilter_cfi.HepMCProduct
HepMCProduct
Definition: ZgammaFilter_cfi.py:9
gather_cfg.cout
cout
Definition: gather_cfg.py:144
edm::BaseFlatGunProducer::fMinPhi
double fMinPhi
Definition: BaseFlatGunProducer.h:44
edm::FlatRandomMultiParticlePGunProducer::fMaxP_
double fMaxP_
Definition: FlatRandomMultiParticlePGunProducer.h:20
HepMC::GenEvent
Definition: hepmc_rootio.cc:9
ParticleData
HepPDT::ParticleData ParticleData
Definition: ParticleDataTable.h:9
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
EDMException.h
edm::BaseFlatGunProducer::fPartIDs
std::vector< int > fPartIDs
Definition: BaseFlatGunProducer.h:41
funct::cos
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
Service.h
PVValHelper::eta
Definition: PVValidationHelpers.h:69
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
theta
Geom::Theta< T > theta() const
Definition: Basic3DVectorLD.h:150
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition: HCALHighEnergyHPDFilter_cfi.py:5
dqmdumpme.k
k
Definition: dqmdumpme.py:60
edm::ParameterSet
Definition: ParameterSet.h:36
GenEventInfoProduct.h
Event.h
FlatRandomMultiParticlePGunProducer.h
edm::Service< edm::RandomNumberGenerator >
edm::EventSetup
Definition: EventSetup.h:57
genfragment_ptgun_cfg.PartID
PartID
Definition: genfragment_ptgun_cfg.py:6
edm::BaseFlatGunProducer
Definition: BaseFlatGunProducer.h:26
edm::BaseFlatGunProducer::fPDGTable
ESHandle< HepPDT::ParticleDataTable > fPDGTable
Definition: BaseFlatGunProducer.h:57
DDAxes::phi
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
multPhiCorr_741_25nsDY_cfi.px
px
Definition: multPhiCorr_741_25nsDY_cfi.py:10
GenParticle.GenParticle
GenParticle
Definition: GenParticle.py:18
eostools.move
def move(src, dest)
Definition: eostools.py:511
genParticles2HepMC_cfi.genEventInfo
genEventInfo
Definition: genParticles2HepMC_cfi.py:6
diffTwoXMLs.r1
r1
Definition: diffTwoXMLs.py:53
edm::FlatRandomMultiParticlePGunProducer::fMinP_
double fMinP_
Definition: FlatRandomMultiParticlePGunProducer.h:19
EgHLTOffHistBins_cfi.mass
mass
Definition: EgHLTOffHistBins_cfi.py:34
edm::FlatRandomMultiParticlePGunProducer::produce
void produce(Event &e, const EventSetup &es) override
Definition: FlatRandomMultiParticlePGunProducer.cc:51
edm::BaseFlatGunProducer::fVerbosity
int fVerbosity
Definition: BaseFlatGunProducer.h:59
cms::Exception
Definition: Exception.h:70
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
ParameterSet.h
HepMCProduct.h
JetChargeProducer_cfi.exp
exp
Definition: JetChargeProducer_cfi.py:6
edm::Event
Definition: Event.h:73
LHEGenericFilter_cfi.ParticleID
ParticleID
Definition: LHEGenericFilter_cfi.py:6
edm::BaseFlatGunProducer::fMinEta
double fMinEta
Definition: BaseFlatGunProducer.h:42
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37