LDMX Software
SimParticle.h
1#ifndef SIMCORE_EVENT_SIMPARTICLE_H
2#define SIMCORE_EVENT_SIMPARTICLE_H
3
4/*~~~~~~~~~~*/
5/* ROOT */
6/*~~~~~~~~~~*/
7#include "TObject.h"
8
9/*~~~~~~~~~~~~~~~~*/
10/* C++ StdLib */
11/*~~~~~~~~~~~~~~~~*/
12#include <map>
13#include <string>
14#include <vector>
15
16namespace ldmx {
17
24 public:
29 unknown = 0,
30 annihil = 1,
31 compt = 2,
32 conv = 3,
33 electronNuclear = 4,
34 eBrem = 5,
35 eIoni = 6,
36 msc = 7,
37 phot = 8,
38 photonNuclear = 9,
39 GammaToMuPair = 10,
40 eDarkBrem = 11,
41 Decay = 12,
42 Primary = 13,
43 muonNuclear = 14,
44 neutronInelastic = 15,
45 neutronCapture = 16,
46 kaonInelastic = 17,
47 pionInelastic = 18,
48 protonInelastic = 19,
49 // Only add additional processes to the end of this list!
50 };
51
53 typedef std::map<std::string, ProcessType> ProcessTypeMap;
54
56 SimParticle() = default;
57
59 virtual ~SimParticle() = default;
60
62 void Clear();
63
65 void Print() const;
66
72 double getEnergy() const { return energy_; }
73
79 double getKineticEnergy() const { return energy_ - mass_; }
85 int getPdgID() const { return pdgID_; }
86
94 int getGenStatus() const { return genStatus_; }
95
101 double getTime() const { return time_; }
102
113 std::vector<double> getVertex() const { return {x_, y_, z_}; }
114
122 std::string getVertexVolume() const { return vertexVolume_; }
123
131 std::string getInteractionMaterial() const { return interactionMaterial_; }
132
139 std::vector<double> getEndPoint() const { return {endX_, endY_, endZ_}; }
140
148 std::vector<double> getMomentum() const { return {px_, py_, pz_}; }
149
155 double getMass() const { return mass_; }
156
162 double getCharge() const { return charge_; }
163
170 std::vector<int> getDaughters() const { return daughters_; }
171
177 std::vector<int> getParents() const { return parents_; }
178
184 void setEnergy(const double& energy) { energy_ = energy; }
185
191 void setPdgID(const int& pdgID) { pdgID_ = pdgID; }
192
198 void setGenStatus(const int& genStatus) { genStatus_ = genStatus; }
199
205 void setTime(const double& time) { time_ = time; }
206
214 void setVertex(const double& x, const double& y, const double& z) {
215 x_ = x;
216 y_ = y;
217 z_ = z;
218 }
219
226 void setVertexVolume(const std::string& vertexVolume) {
227 vertexVolume_ = vertexVolume;
228 }
229
236 void setInteractionMaterial(const std::string& interactionMaterial) {
237 interactionMaterial_ = interactionMaterial;
238 }
239
247 void setEndPoint(const double& endX, const double& endY, const double& endZ) {
248 endX_ = endX;
249 endY_ = endY;
250 endZ_ = endZ;
251 }
252
260 void setMomentum(const double& px, const double& py, const double& pz) {
261 px_ = px;
262 py_ = py;
263 pz_ = pz;
264 }
265
271 void setMass(const double& mass) { mass_ = mass; }
272
278 void setCharge(const double& charge) { charge_ = charge; }
279
288 void addDaughter(const int& daughterTrackID) {
289 daughters_.push_back(daughterTrackID);
290 }
291
297 void addParent(const int& parentTrackID) {
298 parents_.push_back(parentTrackID);
299 }
300
306 int getProcessType() const { return processType_; }
307
313 void setProcessType(const int& processType) { processType_ = processType; }
314
322 void setEndPointMomentum(const double& endpx, const double& endpy,
323 const double& endpz) {
324 endpx_ = endpx;
325 endpy_ = endpy;
326 endpz_ = endpz;
327 }
328
334 std::vector<double> getEndPointMomentum() const {
335 return {endpx_, endpy_, endpz_};
336 }
337
343 static ProcessType findProcessType(std::string processName);
344
345 private:
346 static ProcessTypeMap createProcessTypeMap();
347
348 private:
350 double energy_{0};
351
353 int pdgID_{0};
354
356 int genStatus_{-1};
357
359 double time_{0};
360
362 double x_{0};
363
365 double y_{0};
366
368 double z_{0};
369
371 double endX_{0};
372
374 double endY_{0};
375
377 double endZ_{0};
378
380 double px_{0};
381
383 double py_{0};
384
386 double pz_{0};
387
389 double endpx_{0};
390
392 double endpy_{0};
393
395 double endpz_{0};
396
398 double mass_{0};
399
401 double charge_{0};
402
404 std::vector<int> daughters_;
405
407 std::vector<int> parents_;
408
411
413 std::string vertexVolume_{""};
414
416 std::string interactionMaterial_{""};
417
420
421 ClassDef(SimParticle, 8);
422
423}; // SimParticle
424} // namespace ldmx
425
426#endif // SIMCORE_EVENT_SIMPARTICLE_H
Class representing a simulated particle.
Definition SimParticle.h:23
double getCharge() const
Get the charge of this particle.
double pz_
The z component of the momentum.
double getMass() const
Get the mass of this particle [GeV].
double endpz_
The z component of the endpoint momentum.
ProcessType
Enum for interesting process types.
Definition SimParticle.h:28
std::string getVertexVolume() const
Get the volume name in which this particle was created in.
double getTime() const
Get the global time of this particle's creation [ns].
int processType_
Encoding of Geant4 process type.
double getEnergy() const
Get the energy of this particle [MeV].
Definition SimParticle.h:72
void setGenStatus(const int &genStatus)
Set the generator status of this particle.
double x_
The x component of the vertex.
void setVertex(const double &x, const double &y, const double &z)
Set the vertex of this particle [mm].
double py_
The y component of the momentum.
void setInteractionMaterial(const std::string &interactionMaterial)
Set the name of the material that this particle was created in.
virtual ~SimParticle()=default
Destructor.
std::vector< int > getParents() const
Get a vector containing the track IDs of the parent particles.
std::vector< double > getVertex() const
Get a vector containing the vertex of this particle in mm.
double endX_
The x component of the end point.
std::string getInteractionMaterial() const
Get the material name in which this particle was created in.
void setProcessType(const int &processType)
Set the creator process type of this particle.
double y_
The y component of the vertex.
std::vector< int > daughters_
The list of daughter particle track IDs.
int genStatus_
The generator status.
double endY_
The y component of the end point.
std::string interactionMaterial_
Volume the track was created in.
void setMomentum(const double &px, const double &py, const double &pz)
Set the momentum of this particle [MeV].
std::vector< double > getEndPointMomentum() const
Get the momentum at this particle's end point.
double energy_
The energy of this particle.
std::vector< int > getDaughters() const
Get a vector containing the track IDs of all daughter particles.
SimParticle()=default
Constructor.
std::string vertexVolume_
Volume the track was created in.
void setCharge(const double &charge)
Set the charge of this particle.
int getPdgID() const
Get the PDG ID of this particle.
Definition SimParticle.h:85
void setEnergy(const double &energy)
Set the energy of this particle [MeV].
static ProcessType findProcessType(std::string processName)
Get the process type enum from a G4VProcess name.
int getGenStatus() const
Get the generator status of this particle.
Definition SimParticle.h:94
void setEndPointMomentum(const double &endpx, const double &endpy, const double &endpz)
Set the momentum at this particle's end point.
double endpx_
The x component of the endpoint momentum.
std::vector< double > getEndPoint() const
Get the endpoint of this particle where it was destroyed or left the world volume [mm].
double charge_
The particle's charge.
void addDaughter(const int &daughterTrackID)
Add a reference to a daughter particle by its track ID.
double px_
The x component of the momentum.
std::map< std::string, ProcessType > ProcessTypeMap
Typedef for process map.
Definition SimParticle.h:53
std::vector< double > getMomentum() const
Get a vector containing the momentum of this particle [MeV].
void Clear()
Reset an instance of this class by clearing all of its data.
void Print() const
Print a string representation of this object.
static ProcessTypeMap PROCESS_MAP
Map containing the process types.
void addParent(const int &parentTrackID)
Add a reference to a parent particle by its track ID.
double endZ_
The z component of the end point.
double z_
The z component of the vertex.
void setMass(const double &mass)
Set the mass of this particle [GeV].
double mass_
The particle's mass.
int pdgID_
The PDG ID of this particle.
std::vector< int > parents_
The list of parent particles track IDs.
void setVertexVolume(const std::string &vertexVolume)
Set the name of the volume that this particle was created in.
double endpy_
The y component of the endpoint momentum.
int getProcessType() const
Get the creator process type of this particle.
void setPdgID(const int &pdgID)
Set the PDG ID of this particle.
void setTime(const double &time)
Set the global time of this particle's creation [ns].
double getKineticEnergy() const
Get the kinetic energy of this particle [MeV].
Definition SimParticle.h:79
void setEndPoint(const double &endX, const double &endY, const double &endZ)
Set the end point position of this particle [mm].
double time_
The global creation time.