CMS 3D CMS Logo

FlatRandomOneOverPtGunProducer.cc
Go to the documentation of this file.
1 #include <ostream>
2 
4 
7 
13 
14 #include "CLHEP/Random/RandFlat.h"
15 #include "CLHEP/Units/GlobalSystemOfUnits.h"
16 using namespace edm;
17 
20  edm::ParameterSet defpset;
21  edm::ParameterSet pgun_params = pset.getParameter<ParameterSet>("PGunParameters");
22 
23  fMinOneOverPt = pgun_params.getParameter<double>("MinOneOverPt");
24  fMaxOneOverPt = pgun_params.getParameter<double>("MaxOneOverPt");
25 
26  produces<HepMCProduct>("unsmeared");
27  produces<GenEventInfoProduct>();
28 
29  edm::LogInfo("ParticleGun") << "FlatRandomOneOverPtGunProducer: initialized with minimum and maximum 1/pt "
30  << fMinOneOverPt << ":" << fMaxOneOverPt;
31 }
32 
34  // no need to cleanup GenEvent memory - done in HepMCProduct
35 }
36 
39  CLHEP::HepRandomEngine* engine = &rng->getEngine(e.streamID());
40 
41  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Begin New Event Generation";
42 
43  // event loop (well, another step in it...)
44 
45  // no need to clean up GenEvent memory - done in HepMCProduct
46  //
47 
48  // here re-create fEvt (memory)
49  //
50  fEvt = new HepMC::GenEvent();
51 
52  // now actualy, cook up the event from PDGTable and gun parameters
53  //
54  // 1st, primary vertex
55  //
56  HepMC::GenVertex* Vtx = new HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
57 
58  // loop over particles
59  //
60  int barcode = 1;
61  for (unsigned int ip = 0; ip < fPartIDs.size(); ++ip) {
62  double xx = CLHEP::RandFlat::shoot(engine, 0.0, 1.0);
63  double pt = std::exp((1. - xx) * std::log(fMinOneOverPt) + xx * std::log(fMaxOneOverPt));
64  double eta = CLHEP::RandFlat::shoot(engine, fMinEta, fMaxEta);
65  double phi = CLHEP::RandFlat::shoot(engine, fMinPhi, fMaxPhi);
66  if (pt != 0)
67  pt = 1. / pt;
68  int PartID = fPartIDs[ip];
69  const HepPDT::ParticleData* PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID)));
70  double mass = PData->mass().value();
71  double theta = 2. * atan(exp(-eta));
72  double mom = pt / sin(theta);
73  double px = pt * cos(phi);
74  double py = pt * sin(phi);
75  double pz = mom * cos(theta);
76  double energy2 = mom * mom + mass * mass;
77  double energy = sqrt(energy2);
78  HepMC::FourVector p(px, py, pz, energy);
80  Part->suggest_barcode(barcode);
81  barcode++;
82  Vtx->add_particle_out(Part);
83  LogDebug("ParticleGun") << "FlatRandomOneOverPtGunProducer: Event generated with pt:eta:phi " << pt << " " << eta
84  << " " << phi << " (" << theta / CLHEP::deg << ":" << phi / CLHEP::deg << ")";
85 
86  if (fAddAntiParticle) {
87  HepMC::FourVector ap(-px, -py, -pz, energy);
88  int APartID = -PartID;
89  if (PartID == 22 || PartID == 23) {
90  APartID = PartID;
91  }
92  HepMC::GenParticle* APart = new HepMC::GenParticle(ap, APartID, 1);
93  APart->suggest_barcode(barcode);
94  barcode++;
95  Vtx->add_particle_out(APart);
96  }
97  }
98 
99  fEvt->add_vertex(Vtx);
100  fEvt->set_event_number(e.id().event());
101  fEvt->set_signal_process_id(20);
102 
103  if (fVerbosity > 0) {
104  fEvt->print();
105  }
106 
107  std::unique_ptr<HepMCProduct> BProduct(new HepMCProduct());
108  BProduct->addHepMCData(fEvt);
109  e.put(std::move(BProduct), "unsmeared");
110 
111  std::unique_ptr<GenEventInfoProduct> genEventInfo(new GenEventInfoProduct(fEvt));
112  e.put(std::move(genEventInfo));
113 
114  LogDebug("ParticleGun") << " FlatRandomOneOverPtGunProducer : Event Generation Done ";
115 }
edm::BaseFlatGunProducer::fMaxPhi
double fMaxPhi
Definition: BaseFlatGunProducer.h:45
GenEventInfoProduct
Definition: GenEventInfoProduct.h:17
edm::RandomNumberGenerator::getEngine
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
edm::FlatRandomOneOverPtGunProducer::FlatRandomOneOverPtGunProducer
FlatRandomOneOverPtGunProducer(const ParameterSet &pset)
Definition: FlatRandomOneOverPtGunProducer.cc:18
edm::FlatRandomOneOverPtGunProducer::~FlatRandomOneOverPtGunProducer
~FlatRandomOneOverPtGunProducer() override
Definition: FlatRandomOneOverPtGunProducer.cc:33
MessageLogger.h
edm::BaseFlatGunProducer::fAddAntiParticle
bool fAddAntiParticle
Definition: BaseFlatGunProducer.h:61
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
edm::FlatRandomOneOverPtGunProducer::fMaxOneOverPt
double fMaxOneOverPt
Definition: FlatRandomOneOverPtGunProducer.h:24
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
edm::FlatRandomOneOverPtGunProducer::produce
void produce(Event &e, const EventSetup &es) override
Definition: FlatRandomOneOverPtGunProducer.cc:37
FlatRandomOneOverPtGunProducer.h
edm::BaseFlatGunProducer::fMinPhi
double fMinPhi
Definition: BaseFlatGunProducer.h:44
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
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
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:70
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
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:233
edm::ParameterSet
Definition: ParameterSet.h:47
GenEventInfoProduct.h
Event.h
edm::Service< edm::RandomNumberGenerator >
edm::EventSetup
Definition: EventSetup.h:58
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
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
EgHLTOffHistBins_cfi.mass
mass
Definition: EgHLTOffHistBins_cfi.py:34
edm::BaseFlatGunProducer::fVerbosity
int fVerbosity
Definition: BaseFlatGunProducer.h:59
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
dqm-mbProfile.log
log
Definition: dqm-mbProfile.py:17
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
geometryCSVtoXML.xx
xx
Definition: geometryCSVtoXML.py:19
edm::BaseFlatGunProducer::fMinEta
double fMinEta
Definition: BaseFlatGunProducer.h:42
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
edm::FlatRandomOneOverPtGunProducer::fMinOneOverPt
double fMinOneOverPt
Definition: FlatRandomOneOverPtGunProducer.h:23
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37