Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
|
Generate tracks based on a cluster density given by the user. More...
#include <TrackSimple.hh>
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 |
![]() | |
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 ( ![]() | |
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 ![]() | |
double | GetBeta () const |
Return the speed ( ![]() | |
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< Cluster > | m_clusters |
size_t | m_cluster = 0 |
![]() | |
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-" |
Sensor * | m_sensor = nullptr |
bool | m_isChanged = true |
ViewDrift * | m_viewer = nullptr |
bool | m_debug = false |
size_t | m_plotId = 0 |
Additional Inherited Members | |
![]() | |
void | PlotNewTrack (const double x0, const double y0, const double z0) |
void | PlotCluster (const double x0, const double y0, const double z0) |
![]() | |
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) |
Generate tracks based on a cluster density given by the user.
Definition at line 10 of file TrackSimple.hh.
|
inline |
Garfield::TrackSimple::TrackSimple | ( | Sensor * | sensor | ) |
|
inlinevirtual |
|
virtual |
Get the next "cluster" (ionising collision of the charged particle).
xc,yc,zc | coordinates of the collision |
tc | time of the collision |
nc | number of electrons produced |
ec | deposited energy |
extra | additional information (not always implemented) |
Implements Garfield::Track.
Definition at line 109 of file TrackSimple.cc.
|
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.
|
inline |
Definition at line 41 of file TrackSimple.hh.
|
virtual |
Get the stopping power (mean energy loss [eV] per cm).
Reimplemented from Garfield::Track.
Definition at line 37 of file TrackSimple.cc.
|
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.
void Garfield::TrackSimple::SetClusterDensity | ( | const double | d | ) |
Set the cluster density (inverse mean free path).
Definition at line 15 of file TrackSimple.cc.
|
inline |
|
inline |
void Garfield::TrackSimple::SetStoppingPower | ( | const double | dedx | ) |
Set the stopping power (dE/dx).
Definition at line 27 of file TrackSimple.cc.
|
protected |
Definition at line 52 of file TrackSimple.hh.
Referenced by GetCluster(), and NewTrack().
|
protected |
Definition at line 51 of file TrackSimple.hh.
Referenced by GetCluster(), GetClusters(), and NewTrack().
|
protected |
Definition at line 47 of file TrackSimple.hh.
Referenced by GetStoppingPower(), NewTrack(), and SetStoppingPower().
|
protected |
Definition at line 45 of file TrackSimple.hh.
Referenced by GetClusterDensity(), NewTrack(), and SetClusterDensity().
|
protected |
Definition at line 49 of file TrackSimple.hh.
Referenced by NewTrack(), SetEqualSpacing(), and SetExponentialSpacing().