IOMC
ParticleGuns
src
FlatRandomPtGunProducer.cc
Go to the documentation of this file.
1
/*
2
* \author Julia Yarba
3
*/
4
5
#include <ostream>
6
7
#include "
IOMC/ParticleGuns/interface/FlatRandomPtGunProducer.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/RandFlat.h"
18
19
using namespace
edm
;
20
using namespace
std
;
21
22
FlatRandomPtGunProducer::FlatRandomPtGunProducer
(
const
ParameterSet
&
pset
) :
BaseFlatGunProducer
(
pset
) {
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
33
FlatRandomPtGunProducer::~FlatRandomPtGunProducer
() {
34
// no need to cleanup GenEvent memory - done in HepMCProduct
35
}
36
37
void
FlatRandomPtGunProducer::produce
(
Event
&
e
,
const
EventSetup
& es) {
38
edm::Service<edm::RandomNumberGenerator>
rng;
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
);
77
HepMC::GenParticle
* Part =
new
HepMC::GenParticle
(
p
,
PartID
, 1);
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);
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
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::FlatRandomPtGunProducer::fMinPt
double fMinPt
Definition:
FlatRandomPtGunProducer.h:24
edm::BaseFlatGunProducer::fMinPhi
double fMinPhi
Definition:
BaseFlatGunProducer.h:44
edm::FlatRandomPtGunProducer::produce
void produce(Event &e, const EventSetup &es) override
Definition:
FlatRandomPtGunProducer.cc:37
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::FlatRandomPtGunProducer::FlatRandomPtGunProducer
FlatRandomPtGunProducer(const ParameterSet &pset)
Definition:
FlatRandomPtGunProducer.cc: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
edm::ParameterSet
Definition:
ParameterSet.h:47
AlCaHLTBitMon_ParallelJobs.p
def p
Definition:
AlCaHLTBitMon_ParallelJobs.py:153
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
std
Definition:
JetResolutionObject.h:76
genParticles2HepMC_cfi.genEventInfo
genEventInfo
Definition:
genParticles2HepMC_cfi.py:6
edm::FlatRandomPtGunProducer::fMaxPt
double fMaxPt
Definition:
FlatRandomPtGunProducer.h:25
edm::FlatRandomPtGunProducer::~FlatRandomPtGunProducer
~FlatRandomPtGunProducer() override
Definition:
FlatRandomPtGunProducer.cc:33
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
FlatRandomPtGunProducer.h
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
Generated for CMSSW Reference Manual by
1.8.16