Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
Garfield::TrackSimple Class Reference

Generate tracks based on a cluster density given by the user. More...

#include <TrackSimple.hh>

+ Inheritance diagram for Garfield::TrackSimple:

Classes

struct  Cluster
 

Public Member Functions

 TrackSimple ()
 Default constructor.
 
 TrackSimple (Sensor *sensor)
 Constructor.
 
virtual ~TrackSimple ()
 Destructor.
 
void SetEqualSpacing ()
 Constant distance between clusters.
 
void SetExponentialSpacing ()
 Exponentially distributed distance between clusters.
 
void SetClusterDensity (const double d)
 Set the cluster density (inverse mean free path).
 
virtual double GetClusterDensity ()
 
void SetStoppingPower (const double dedx)
 Set the stopping power (dE/dx).
 
virtual double GetStoppingPower ()
 Get the stopping power (mean energy loss [eV] per cm).
 
virtual bool NewTrack (const double x0, const double y0, const double z0, const double t0, const double dx0, const double dy0, const double dz0)
 
virtual bool GetCluster (double &xc, double &yc, double &zc, double &tc, int &ne, double &ec, double &extra)
 
const std::vector< Cluster > & GetClusters () const
 
- Public Member Functions inherited from Garfield::Track
 Track ()=delete
 Default constructor.
 
 Track (const std::string &name)
 Constructor.
 
virtual ~Track ()
 Destructor.
 
virtual void SetParticle (const std::string &part)
 
void SetEnergy (const double e)
 Set the particle energy.
 
void SetBetaGamma (const double bg)
 Set the relative momentum of the particle.
 
void SetBeta (const double beta)
 Set the speed ( $\beta = v/c$) of the particle.
 
void SetGamma (const double gamma)
 Set the Lorentz factor of the particle.
 
void SetMomentum (const double p)
 Set the particle momentum.
 
void SetKineticEnergy (const double ekin)
 Set the kinetic energy of the particle.
 
double GetEnergy () const
 Return the particle energy.
 
double GetBetaGamma () const
 Return the $\beta\gamma$ of the projectile.
 
double GetBeta () const
 Return the speed ( $\beta = v/c$) of the projectile.
 
double GetGamma () const
 Return the Lorentz factor of the projectile.
 
double GetMomentum () const
 Return the particle momentum.
 
double GetKineticEnergy () const
 Return the kinetic energy of the projectile.
 
double GetCharge () const
 Get the charge of the projectile.
 
double GetMass () const
 Get the mass [eV / c2] of the projectile.
 
void SetSensor (Sensor *s)
 Set the sensor through which to transport the particle.
 
void EnablePlotting (ViewDrift *viewer)
 Switch on plotting.
 
void DisablePlotting ()
 Switch off plotting.
 
void EnableDebugging ()
 Switch on debugging messages.
 
void DisableDebugging ()
 Switch off debugging messages.
 

Protected Attributes

double m_mfp = 0.04
 
double m_eloss = 2530.
 
bool m_useEqualSpacing = false
 
std::vector< Clusterm_clusters
 
size_t m_cluster = 0
 
- Protected Attributes inherited from Garfield::Track
std::string m_className = "Track"
 
double m_q = -1.
 
int m_spin = 1
 
double m_mass
 
double m_energy = 0.
 
double m_beta2 = 1.
 
bool m_isElectron = false
 
std::string m_particleName = "mu-"
 
Sensorm_sensor = nullptr
 
bool m_isChanged = true
 
ViewDriftm_viewer = nullptr
 
bool m_debug = false
 
size_t m_plotId = 0
 

Additional Inherited Members

- Protected Member Functions inherited from Garfield::Track
void PlotNewTrack (const double x0, const double y0, const double z0)
 
void PlotCluster (const double x0, const double y0, const double z0)
 
- Static Protected Member Functions inherited from Garfield::Track
static std::array< double, 3 > StepBfield (const double dt, const double qoverm, const double vmag, double bx, double by, double bz, std::array< double, 3 > &dir)
 

Detailed Description

Generate tracks based on a cluster density given by the user.

Definition at line 10 of file TrackSimple.hh.

Constructor & Destructor Documentation

◆ TrackSimple() [1/2]

Garfield::TrackSimple::TrackSimple ( )
inline

Default constructor.

Definition at line 18 of file TrackSimple.hh.

18: TrackSimple(nullptr) {}
TrackSimple()
Default constructor.

Referenced by TrackSimple().

◆ TrackSimple() [2/2]

Garfield::TrackSimple::TrackSimple ( Sensor * sensor)

Constructor.

Definition at line 11 of file TrackSimple.cc.

11 : Track("Simple") {
12 m_sensor = sensor;
13}
Sensor * m_sensor
Definition Track.hh:114
Track()=delete
Default constructor.

◆ ~TrackSimple()

virtual Garfield::TrackSimple::~TrackSimple ( )
inlinevirtual

Destructor.

Definition at line 22 of file TrackSimple.hh.

22{}

Member Function Documentation

◆ GetCluster()

bool Garfield::TrackSimple::GetCluster ( double & xc,
double & yc,
double & zc,
double & tc,
int & nc,
double & ec,
double & extra )
virtual

Get the next "cluster" (ionising collision of the charged particle).

Parameters
xc,yc,zccoordinates of the collision
tctime of the collision
ncnumber of electrons produced
ecdeposited energy
extraadditional information (not always implemented)

Implements Garfield::Track.

Definition at line 109 of file TrackSimple.cc.

110 {
111 xc = yc = zc = tc = ec = extra = 0.;
112 ne = 0;
113 if (m_clusters.empty() || m_cluster >= m_clusters.size()) return false;
114 const auto& cluster = m_clusters[m_cluster];
115 xc = cluster.x;
116 yc = cluster.y;
117 zc = cluster.z;
118 tc = cluster.t;
119 ec = cluster.energy;
120 ne = 1;
121 ++m_cluster;
122 return true;
123}
std::vector< Cluster > m_clusters

◆ GetClusterDensity()

double Garfield::TrackSimple::GetClusterDensity ( )
virtual

Get the cluster density (number of ionizing collisions per cm or inverse mean free path for ionization).

Reimplemented from Garfield::Track.

Definition at line 25 of file TrackSimple.cc.

25{ return 1. / m_mfp; }

◆ GetClusters()

const std::vector< Cluster > & Garfield::TrackSimple::GetClusters ( ) const
inline

Definition at line 41 of file TrackSimple.hh.

41{ return m_clusters; }

◆ GetStoppingPower()

double Garfield::TrackSimple::GetStoppingPower ( )
virtual

Get the stopping power (mean energy loss [eV] per cm).

Reimplemented from Garfield::Track.

Definition at line 37 of file TrackSimple.cc.

37{ return m_eloss; }

◆ NewTrack()

bool Garfield::TrackSimple::NewTrack ( const double x0,
const double y0,
const double z0,
const double t0,
const double dx0,
const double dy0,
const double dz0 )
virtual

Calculate a new track starting from (x0, y0, z0) at time t0 in direction (dx0, dy0, dz0).

Implements Garfield::Track.

Definition at line 39 of file TrackSimple.cc.

41 {
42
43 m_clusters.clear();
44 m_cluster = 0;
45 // Make sure the sensor is defined.
46 if (!m_sensor) {
47 std::cerr << m_className << "::NewTrack: Sensor is not defined.\n";
48 return false;
49 }
50
51 // Make sure we are inside a medium.
52 Medium* medium = m_sensor->GetMedium(x0, y0, z0);
53 if (!medium) {
54 std::cerr << m_className << "::NewTrack: No medium at initial position.\n";
55 return false;
56 }
57
58 double x = x0;
59 double y = y0;
60 double z = z0;
61 double t = t0;
62
63 // Normalise the direction.
64 double dx = dx0;
65 double dy = dy0;
66 double dz = dz0;
67 const double d = sqrt(dx * dx + dy * dy + dz * dz);
68 if (d < Small) {
69 // Choose a random direction.
70 RndmDirection(dx, dy, dz);
71 } else {
72 const double scale = 1. / d;
73 dx *= scale;
74 dy *= scale;
75 dz *= scale;
76 }
77 bool ok = true;
78 while (ok) {
80 x += dx * m_mfp;
81 y += dy * m_mfp;
82 z += dz * m_mfp;
83 } else {
84 const double step = -m_mfp * log(RndmUniformPos());
85 x += dx * step;
86 y += dy * step;
87 z += dz * step;
88 }
89
90 medium = m_sensor->GetMedium(x, y, z);
91 if (!medium) {
92 if (m_debug) {
93 std::cout << m_className << "::NewTrack: Particle left the medium.\n";
94 }
95 break;
96 }
97 Cluster cluster;
98 cluster.x = x;
99 cluster.y = y;
100 cluster.z = z;
101 cluster.t = t;
102 cluster.energy = m_eloss * m_mfp;
103 m_clusters.push_back(std::move(cluster));
104 }
105 m_cluster = 0;
106 return true;
107}
std::string m_className
Definition Track.hh:104
void RndmDirection(double &dx, double &dy, double &dz, const double length=1.)
Draw a random (isotropic) direction vector.
Definition Random.hh:128
double RndmUniformPos()
Draw a random number uniformly distributed in the range (0, 1).
Definition Random.hh:17
DoubleAc sqrt(const DoubleAc &f)
Definition DoubleAc.cpp:314

◆ SetClusterDensity()

void Garfield::TrackSimple::SetClusterDensity ( const double d)

Set the cluster density (inverse mean free path).

Definition at line 15 of file TrackSimple.cc.

15 {
16 if (d < Small) {
17 std::cerr << m_className << "::SetClusterDensity:\n"
18 << " Cluster density (number of clusters per cm)"
19 << " must be positive.\n";
20 return;
21 }
22 m_mfp = 1. / d;
23}

◆ SetEqualSpacing()

void Garfield::TrackSimple::SetEqualSpacing ( )
inline

Constant distance between clusters.

Definition at line 25 of file TrackSimple.hh.

25{ m_useEqualSpacing = true; }

◆ SetExponentialSpacing()

void Garfield::TrackSimple::SetExponentialSpacing ( )
inline

Exponentially distributed distance between clusters.

Definition at line 27 of file TrackSimple.hh.

27{ m_useEqualSpacing = false; }

◆ SetStoppingPower()

void Garfield::TrackSimple::SetStoppingPower ( const double dedx)

Set the stopping power (dE/dx).

Definition at line 27 of file TrackSimple.cc.

27 {
28 if (dedx < Small) {
29 std::cerr << m_className << "::SetStoppingPower:\n"
30 << " Stopping power (average energy loss [eV] per cm)"
31 << " must be positive.\n";
32 return;
33 }
34 m_eloss = dedx;
35}

Member Data Documentation

◆ m_cluster

size_t Garfield::TrackSimple::m_cluster = 0
protected

Definition at line 52 of file TrackSimple.hh.

Referenced by GetCluster(), and NewTrack().

◆ m_clusters

std::vector<Cluster> Garfield::TrackSimple::m_clusters
protected

Definition at line 51 of file TrackSimple.hh.

Referenced by GetCluster(), GetClusters(), and NewTrack().

◆ m_eloss

double Garfield::TrackSimple::m_eloss = 2530.
protected

Definition at line 47 of file TrackSimple.hh.

Referenced by GetStoppingPower(), NewTrack(), and SetStoppingPower().

◆ m_mfp

double Garfield::TrackSimple::m_mfp = 0.04
protected

Definition at line 45 of file TrackSimple.hh.

Referenced by GetClusterDensity(), NewTrack(), and SetClusterDensity().

◆ m_useEqualSpacing

bool Garfield::TrackSimple::m_useEqualSpacing = false
protected

Definition at line 49 of file TrackSimple.hh.

Referenced by NewTrack(), SetEqualSpacing(), and SetExponentialSpacing().


The documentation for this class was generated from the following files: