Newer
Older
#include "TDatabasePDG.h"
#include "CLHEP/Units/SystemOfUnits.h"
#include "CLHEP/Random/RandFlat.h"
#include "CLHEP/Random/RandGauss.h"
DECLARE_COMPONENT(GtGunTool)
StatusCode
GtGunTool::initialize() {
StatusCode sc;
// the particles names/pdgs and energies should be specified.
if (m_particles.value().size()==0) {
error() << "Please specify the list of particle names/pdgs" << endmsg;
return StatusCode::FAILURE;
}
if (m_energies.value().size() != m_particles.value().size()) {
error() << "Mismatched energies and particles." << endmsg;
return StatusCode::FAILURE;
}
// others should be empty or specify
if (m_thetamins.value().size()
&& m_thetamins.value().size() != m_particles.value().size()) {
error() << "Mismatched thetamins and particles." << endmsg;
return StatusCode::FAILURE;
}
if (m_thetamaxs.value().size()
&& m_thetamaxs.value().size() != m_particles.value().size()) {
error() << "Mismatched thetamaxs and particles." << endmsg;
return StatusCode::FAILURE;
}
if (m_phimins.value().size()
&& m_phimins.value().size() != m_particles.value().size()) {
error() << "Mismatched phimins and particles." << endmsg;
return StatusCode::FAILURE;
}
if (m_phimaxs.value().size()
&& m_phimaxs.value().size() != m_particles.value().size()) {
error() << "Mismatched phimaxs and particles." << endmsg;
return StatusCode::FAILURE;
}
return sc;
}
StatusCode
GtGunTool::finalize() {
StatusCode sc;
return sc;
}
bool
GtGunTool::mutate(MyHepMC::GenEvent& event) {
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
TDatabasePDG* db_pdg = TDatabasePDG::Instance();
// The default unit here is GeV.
// but we don't add the unit, because in geant4 it is multiplied.
for (int i = 0; i < m_particles.value().size(); ++i) {
const std::string& particle_name = m_particles.value()[i];
int pdgcode = 0;
double mass = 0;
TParticlePDG* particle = db_pdg->GetParticle(particle_name.c_str());
if (particle) {
pdgcode = particle->PdgCode();
mass = particle->Mass(); // GeV
} else {
// guess it is pdg code
pdgcode = atol(particle_name.c_str());
if (!pdgcode) {
error() << "Unsupported particle name/pdgcode " << particle_name << endmsg;
return false;
}
}
double energy = m_energies.value()[i];
// create the MC particle
plcio::MCParticle mcp = event.m_mc_vec.create();
mcp.setPDG(pdgcode);
mcp.setGeneratorStatus(1);
mcp.setSimulatorStatus(1);
// mcp.setCharge();
mcp.setTime(0.0);
// mcp.setVertex();
// mcp.setEndpoint();
// assume energy is momentum
double p = energy;
// direction
// by default, randomize the direction
double costheta = CLHEP::RandFlat::shoot(-1, 1);
double phi = 360*CLHEP::RandFlat::shoot()*CLHEP::degree;
double sintheta = sqrt(1.-costheta*costheta);
// check if theta min/max is set
if (i < m_thetamins.value().size()
&& i < m_thetamaxs.value().size()) {
double thetamin = m_thetamins.value()[i];
double thetamax = m_thetamaxs.value()[i];
if (thetamin == thetamax) { // fixed theta
costheta = cos(thetamin);
sintheta = sin(thetamin);
info() << "theta is fixed: " << thetamin << endmsg;
}
}
if (i < m_phimins.value().size()
&& i < m_phimaxs.value().size()) {
double phimin = m_phimins.value()[i];
double phimax = m_phimaxs.value()[i];
if (phimin == phimax) { // fixed phi
phi = phimin;
info() << "phi is fixed: " << phimin << endmsg;
}
}
double px = p*sintheta*cos(phi);
double py = p*sintheta*sin(phi);
double pz = p*costheta;
mcp.setMomentum(plcio::FloatThree(px,py,pz));
// mcp.setMomentumAtEndpoint();
// mcp.setSpin();
// mcp.setColorFlow();
}
// event.SetEventHeader( m_processed_event, -99, 9999, "Generator");