IOMC
ParticleGuns
src
ExpoRandomPtGunProducer.cc
Go to the documentation of this file.
1
/*
2
* \author Jean-Roch Vlimant
3
*/
4
5
#include <ostream>
6
7
#include "
IOMC/ParticleGuns/interface/ExpoRandomPtGunProducer.h
"
8
9
#include "
SimDataFormats/GeneratorProducts/interface/HepMCProduct.h
"
10
#include "
SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h
"
11
12
#include "
FWCore/Framework/interface/Event.h
"
13
#include "
FWCore/ParameterSet/interface/ParameterSet.h
"
14
#include "
FWCore/ServiceRegistry/interface/Service.h
"
15
#include "
FWCore/Utilities/interface/RandomNumberGenerator.h
"
16
17
#include "CLHEP/Random/RandExponential.h"
18
#include "CLHEP/Random/RandFlat.h"
19
20
using namespace
edm
;
21
using namespace
std
;
22
23
ExpoRandomPtGunProducer::ExpoRandomPtGunProducer
(
const
ParameterSet
&
pset
) :
BaseFlatGunProducer
(
pset
) {
24
ParameterSet
defpset;
25
ParameterSet
pgun_params =
pset
.getParameter<
ParameterSet
>(
"PGunParameters"
);
26
27
fMinPt
= pgun_params.
getParameter
<
double
>(
"MinPt"
);
28
fMaxPt
= pgun_params.
getParameter
<
double
>(
"MaxPt"
);
29
30
fMeanPt
= pgun_params.
getParameter
<
double
>(
"MeanPt"
);
31
32
produces<HepMCProduct>(
"unsmeared"
);
33
produces<GenEventInfoProduct>();
34
}
35
36
ExpoRandomPtGunProducer::~ExpoRandomPtGunProducer
() {
37
// no need to cleanup GenEvent memory - done in HepMCProduct
38
}
39
40
void
ExpoRandomPtGunProducer::produce
(
Event
&
e
,
const
EventSetup
& es) {
41
edm::Service<edm::RandomNumberGenerator>
rng;
42
CLHEP::HepRandomEngine* engine = &rng->
getEngine
(
e
.streamID());
43
44
if
(
fVerbosity
> 0) {
45
cout
<<
" ExpoRandomPtGunProducer : 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(CLHEP::HepLorentzVector(0.,0.,0.));
61
HepMC::GenVertex* Vtx =
new
HepMC::GenVertex(HepMC::FourVector(0., 0., 0.));
62
63
// loop over particles
64
//
65
int
barcode = 1;
66
for
(
unsigned
int
ip = 0; ip <
fPartIDs
.size(); ++ip) {
67
//the max is to ensure you don't generate at 0
68
//the 90% is to get rid of edge effect
69
70
double
pt
=
std::max
(0.00001, 0.90 *
fMinPt
) + CLHEP::RandExponential::shoot(engine,
fMeanPt
);
71
//shoot until in the designated range
72
while
(pt < fMinPt || pt >
fMaxPt
) {
73
pt
=
std::max
(0.00001, 0.90 *
fMinPt
) + CLHEP::RandExponential::shoot(engine,
fMeanPt
);
74
}
75
76
double
eta
= CLHEP::RandFlat::shoot(engine,
fMinEta
,
fMaxEta
);
77
double
phi = CLHEP::RandFlat::shoot(engine,
fMinPhi
,
fMaxPhi
);
78
int
PartID
=
fPartIDs
[ip];
79
const
HepPDT::ParticleData
* PData =
fPDGTable
->particle(
HepPDT::ParticleID
(
abs
(
PartID
)));
80
double
mass
= PData->mass().value();
81
double
theta
= 2. * atan(
exp
(-
eta
));
82
double
mom =
pt
/
sin
(
theta
);
83
double
px
=
pt
*
cos
(phi);
84
double
py
=
pt
*
sin
(phi);
85
double
pz = mom *
cos
(
theta
);
86
double
energy2 = mom * mom +
mass
*
mass
;
87
double
energy
=
sqrt
(energy2);
88
//CLHEP::Hep3Vector p(px,py,pz) ;
89
//HepMC::GenParticle* Part =
90
// new HepMC::GenParticle(CLHEP::HepLorentzVector(p,energy),PartID,1);
91
HepMC::FourVector
p
(
px
,
py
, pz,
energy
);
92
HepMC::GenParticle
* Part =
new
HepMC::GenParticle
(
p
,
PartID
, 1);
93
Part->suggest_barcode(barcode);
94
barcode++;
95
Vtx->add_particle_out(Part);
96
97
if
(
fAddAntiParticle
) {
98
//CLHEP::Hep3Vector ap(-px,-py,-pz) ;
99
HepMC::FourVector ap(-
px
, -
py
, -pz,
energy
);
100
int
APartID = -
PartID
;
101
if
(
PartID
== 22 ||
PartID
== 23) {
102
APartID =
PartID
;
103
}
104
//HepMC::GenParticle* APart =
105
// new HepMC::GenParticle(CLHEP::HepLorentzVector(ap,energy),APartID,1);
106
HepMC::GenParticle
* APart =
new
HepMC::GenParticle
(ap, APartID, 1);
107
APart->suggest_barcode(barcode);
108
barcode++;
109
Vtx->add_particle_out(APart);
110
}
111
}
112
113
fEvt
->add_vertex(Vtx);
114
fEvt
->set_event_number(
e
.id().event());
115
fEvt
->set_signal_process_id(20);
116
117
if
(
fVerbosity
> 0) {
118
fEvt
->print();
119
}
120
121
unique_ptr<HepMCProduct> BProduct(
new
HepMCProduct
());
122
BProduct->addHepMCData(
fEvt
);
123
e
.put(
std::move
(BProduct),
"unsmeared"
);
124
125
unique_ptr<GenEventInfoProduct>
genEventInfo
(
new
GenEventInfoProduct
(
fEvt
));
126
e
.put(
std::move
(
genEventInfo
));
127
128
if
(
fVerbosity
> 0) {
129
// for testing purpose only
130
// fEvt->print() ; // prints empty info after it's made into edm::Event
131
cout
<<
" FlatRandomPtGunProducer : Event Generation Done "
<< endl;
132
}
133
}
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::BaseFlatGunProducer::fAddAntiParticle
bool fAddAntiParticle
Definition:
BaseFlatGunProducer.h:61
DiDispStaMuonMonitor_cfi.pt
pt
Definition:
DiDispStaMuonMonitor_cfi.py:39
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::ExpoRandomPtGunProducer::~ExpoRandomPtGunProducer
~ExpoRandomPtGunProducer() override
Definition:
ExpoRandomPtGunProducer.cc:36
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
edm::ExpoRandomPtGunProducer::ExpoRandomPtGunProducer
ExpoRandomPtGunProducer(const ParameterSet &pset)
Definition:
ExpoRandomPtGunProducer.cc:23
Service.h
PVValHelper::eta
Definition:
PVValidationHelpers.h:69
mathSSE::sqrt
T sqrt(T t)
Definition:
SSEVec.h:19
edm::ExpoRandomPtGunProducer::produce
void produce(Event &e, const EventSetup &es) override
Definition:
ExpoRandomPtGunProducer.cc:40
theta
Geom::Theta< T > theta() const
Definition:
Basic3DVectorLD.h:150
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition:
HCALHighEnergyHPDFilter_cfi.py:5
ExpoRandomPtGunProducer.h
edm::ParameterSet
Definition:
ParameterSet.h:47
GenEventInfoProduct.h
Event.h
SiStripPI::max
Definition:
SiStripPayloadInspectorHelper.h:169
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
multPhiCorr_741_25nsDY_cfi.px
px
Definition:
multPhiCorr_741_25nsDY_cfi.py:10
edm::ExpoRandomPtGunProducer::fMeanPt
double fMeanPt
Definition:
ExpoRandomPtGunProducer.h:27
GenParticle.GenParticle
GenParticle
Definition:
GenParticle.py:18
eostools.move
def move(src, dest)
Definition:
eostools.py:511
std
Definition:
JetResolutionObject.h:76
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
edm::ExpoRandomPtGunProducer::fMaxPt
double fMaxPt
Definition:
ExpoRandomPtGunProducer.h:26
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
edm::ExpoRandomPtGunProducer::fMinPt
double fMinPt
Definition:
ExpoRandomPtGunProducer.h:25
MillePedeFileConverter_cfg.e
e
Definition:
MillePedeFileConverter_cfg.py:37
Generated for CMSSW Reference Manual by
1.8.16