Garfield++ 5.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
|
#include <DriftLineRKF.hh>
Public Member Functions | |
DriftLineRKF () | |
Default constructor. | |
DriftLineRKF (Sensor *sensor) | |
Constructor. | |
~DriftLineRKF () | |
Destructor. | |
void | SetSensor (Sensor *s) |
Set the sensor. | |
void | EnablePlotting (ViewDrift *view) |
Switch on drift line plotting. | |
void | DisablePlotting () |
Switch off drift line plotting. | |
void | EnableSignalCalculation (const bool on=true) |
Switch calculation of induced currents on or off (default: enabled). | |
void | SetSignalAveragingOrder (const unsigned int navg) |
void | UseWeightingPotential (const bool on=true) |
void | SetIntegrationAccuracy (const double eps) |
Set the accuracy of the Runge Kutta Fehlberg drift line integration. | |
void | SetMaximumStepSize (const double ms) |
Set (explicitly) the maximum step size that is allowed. | |
void | SetMaximumStepSize () |
void | UnsetMaximumStepSize () |
Do not apply an upper limit to the step size that is allowed. | |
void | RejectKinks (const bool on=true) |
void | SetElectronSignalScalingFactor (const double scale) |
Set multiplication factor for the signal induced by electrons. | |
void | SetHoleSignalScalingFactor (const double scale) |
Set multiplication factor for the signal induced by holes. | |
void | SetIonSignalScalingFactor (const double scale) |
Set multiplication factor for the signal induced by ions. | |
void | EnableAvalanche (const bool on=true) |
Enable/disable simulation electron multiplication (default: on). | |
void | EnableIonTail (const bool on=true) |
Enable/disable simulation of the ion tail (default: off). | |
void | EnableNegativeIonTail (const bool on=true) |
Enable/disable simulation of the negative ion tail (default: off). | |
void | SetGainFluctuationsFixed (const double gain=-1.) |
Do not randomize the avalanche size. | |
void | SetGainFluctuationsPolya (const double theta, const double mean=-1., const bool quiet=false) |
void | EnableTownsendMap (const bool on=true) |
Retrieve the Townsend coefficient from the component. | |
void | EnableVelocityMap (const bool on=true) |
Retrieve the drift velocity from the component. | |
bool | DriftElectron (const double x0, const double y0, const double z0, const double t0) |
Simulate the drift line of an electron with a given starting point. | |
bool | DriftHole (const double x0, const double y0, const double z0, const double t0) |
Simulate the drift line of a hole with a given starting point. | |
bool | DriftIon (const double x0, const double y0, const double z0, const double t0) |
Simulate the drift line of an ion with a given starting point. | |
bool | DriftPositron (const double x0, const double y0, const double z0, const double t0) |
bool | DriftNegativeIon (const double x0, const double y0, const double z0, const double t0) |
void | PrintDriftLine () const |
Print the trajectory of the most recent drift line. | |
void | GetEndPoint (double &x, double &y, double &z, double &t, int &st) const |
Get the end point and status flag of the most recent drift line. | |
size_t | GetNumberOfDriftLinePoints () const |
Get the number of points of the most recent drift line. | |
void | GetDriftLinePoint (const size_t i, double &x, double &y, double &z, double &t) const |
Get the coordinates and time of a point along the most recent drift line. | |
double | GetArrivalTimeSpread (const double eps=1.e-4) const |
double | GetGain (const double eps=1.e-4) const |
Compute the multiplication factor for the current drift line. | |
double | GetLoss (const double eps=1.e-4) const |
Compute the attachment loss factor for the current drift line. | |
double | GetDriftTime () const |
Get the cumulative drift time. | |
double | GetPathLength () const |
Get the cumulative path length. | |
void | GetAvalancheSize (double &ne, double &ni) const |
bool | FieldLine (const double xi, const double yi, const double zi, std::vector< std::array< float, 3 > > &xl, const bool electron=true) const |
void | EnableDebugging (const bool on=true) |
Switch debugging messages on/off (default: off). | |
Calculation of drift lines based on macroscopic transport coefficients using Runge-Kutta-Fehlberg integration.
Definition at line 18 of file DriftLineRKF.hh.
|
inline |
Garfield::DriftLineRKF::DriftLineRKF | ( | Sensor * | sensor | ) |
Constructor.
Definition at line 58 of file DriftLineRKF.cc.
|
inline |
void Garfield::DriftLineRKF::DisablePlotting | ( | ) |
Switch off drift line plotting.
Definition at line 103 of file DriftLineRKF.cc.
bool Garfield::DriftLineRKF::DriftElectron | ( | const double | x0, |
const double | y0, | ||
const double | z0, | ||
const double | t0 ) |
Simulate the drift line of an electron with a given starting point.
Definition at line 143 of file DriftLineRKF.cc.
bool Garfield::DriftLineRKF::DriftHole | ( | const double | x0, |
const double | y0, | ||
const double | z0, | ||
const double | t0 ) |
Simulate the drift line of a hole with a given starting point.
Definition at line 250 of file DriftLineRKF.cc.
bool Garfield::DriftLineRKF::DriftIon | ( | const double | x0, |
const double | y0, | ||
const double | z0, | ||
const double | t0 ) |
Simulate the drift line of an ion with a given starting point.
Definition at line 266 of file DriftLineRKF.cc.
bool Garfield::DriftLineRKF::DriftNegativeIon | ( | const double | x0, |
const double | y0, | ||
const double | z0, | ||
const double | t0 ) |
Simulate the drift line of an ion with a given starting point, assuming that it has negative charge.
Definition at line 282 of file DriftLineRKF.cc.
bool Garfield::DriftLineRKF::DriftPositron | ( | const double | x0, |
const double | y0, | ||
const double | z0, | ||
const double | t0 ) |
Simulate the drift line of an electron with a given starting point, assuming that it has positive charge.
Definition at line 233 of file DriftLineRKF.cc.
|
inline |
Enable/disable simulation electron multiplication (default: on).
Definition at line 69 of file DriftLineRKF.hh.
|
inline |
Switch debugging messages on/off (default: off).
Definition at line 140 of file DriftLineRKF.hh.
|
inline |
Enable/disable simulation of the ion tail (default: off).
Definition at line 71 of file DriftLineRKF.hh.
|
inline |
Enable/disable simulation of the negative ion tail (default: off).
Definition at line 73 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::EnablePlotting | ( | ViewDrift * | view | ) |
Switch on drift line plotting.
Definition at line 95 of file DriftLineRKF.cc.
|
inline |
Switch calculation of induced currents on or off (default: enabled).
Definition at line 36 of file DriftLineRKF.hh.
|
inline |
Retrieve the Townsend coefficient from the component.
Definition at line 82 of file DriftLineRKF.hh.
|
inline |
Retrieve the drift velocity from the component.
Definition at line 84 of file DriftLineRKF.hh.
bool Garfield::DriftLineRKF::FieldLine | ( | const double | xi, |
const double | yi, | ||
const double | zi, | ||
std::vector< std::array< float, 3 > > & | xl, | ||
const bool | electron = true ) const |
Compute an electric field line.
xi,yi,zi | starting point |
xl | points along the field line |
electron | flag to set the direction in which to follow the field |
Definition at line 1506 of file DriftLineRKF.cc.
Referenced by Garfield::ViewField::PlotFieldLines().
double Garfield::DriftLineRKF::GetArrivalTimeSpread | ( | const double | eps = 1.e-4 | ) | const |
Compute the sigma of the arrival time distribution for the current drift line by integrating the longitudinal diffusion coefficient.
Definition at line 735 of file DriftLineRKF.cc.
|
inline |
Definition at line 128 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::GetDriftLinePoint | ( | const size_t | i, |
double & | x, | ||
double & | y, | ||
double & | z, | ||
double & | t ) const |
Get the coordinates and time of a point along the most recent drift line.
Definition at line 1287 of file DriftLineRKF.cc.
|
inline |
Get the cumulative drift time.
Definition at line 122 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::GetEndPoint | ( | double & | x, |
double & | y, | ||
double & | z, | ||
double & | t, | ||
int & | st ) const |
Get the end point and status flag of the most recent drift line.
Definition at line 1272 of file DriftLineRKF.cc.
double Garfield::DriftLineRKF::GetGain | ( | const double | eps = 1.e-4 | ) | const |
Compute the multiplication factor for the current drift line.
Definition at line 777 of file DriftLineRKF.cc.
double Garfield::DriftLineRKF::GetLoss | ( | const double | eps = 1.e-4 | ) | const |
Compute the attachment loss factor for the current drift line.
Definition at line 825 of file DriftLineRKF.cc.
|
inline |
Get the number of points of the most recent drift line.
Definition at line 109 of file DriftLineRKF.hh.
double Garfield::DriftLineRKF::GetPathLength | ( | ) | const |
Get the cumulative path length.
Definition at line 871 of file DriftLineRKF.cc.
void Garfield::DriftLineRKF::PrintDriftLine | ( | ) | const |
Print the trajectory of the most recent drift line.
Definition at line 1241 of file DriftLineRKF.cc.
|
inline |
Request (or not) the drift line calculation to be aborted if the drift line makes a bend sharper than 90 degrees.
Definition at line 59 of file DriftLineRKF.hh.
|
inline |
Set multiplication factor for the signal induced by electrons.
Definition at line 62 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::SetGainFluctuationsFixed | ( | const double | gain = -1. | ) |
Do not randomize the avalanche size.
Definition at line 105 of file DriftLineRKF.cc.
void Garfield::DriftLineRKF::SetGainFluctuationsPolya | ( | const double | theta, |
const double | mean = -1., | ||
const bool | quiet = false ) |
Sample the avalanche size from a Polya distribution with shape parameter theta.
Definition at line 119 of file DriftLineRKF.cc.
|
inline |
Set multiplication factor for the signal induced by holes.
Definition at line 64 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::SetIntegrationAccuracy | ( | const double | eps | ) |
Set the accuracy of the Runge Kutta Fehlberg drift line integration.
Definition at line 71 of file DriftLineRKF.cc.
|
inline |
Set multiplication factor for the signal induced by ions.
Definition at line 66 of file DriftLineRKF.hh.
void Garfield::DriftLineRKF::SetMaximumStepSize | ( | ) |
Try to set an upper limit to the allowable step size based on the feature size of the sensor.
Definition at line 80 of file DriftLineRKF.cc.
void Garfield::DriftLineRKF::SetMaximumStepSize | ( | const double | ms | ) |
Set (explicitly) the maximum step size that is allowed.
Definition at line 85 of file DriftLineRKF.cc.
Referenced by Garfield::ViewField::PlotFieldLines().
void Garfield::DriftLineRKF::SetSensor | ( | Sensor * | s | ) |
Set the sensor.
Definition at line 63 of file DriftLineRKF.cc.
Referenced by Garfield::ViewField::PlotFieldLines().
|
inline |
Set the number of points to be used when averaging the delayed signal vector over a time bin in the Sensor class. The averaging is done with a
Definition at line 41 of file DriftLineRKF.hh.
|
inline |
Do not apply an upper limit to the step size that is allowed.
Definition at line 56 of file DriftLineRKF.hh.
|
inline |
Use the weighting potential (as opposed to the weighting field) for calculating the induced signal.
Definition at line 44 of file DriftLineRKF.hh.