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

#include <HeedParticle.h>

+ Inheritance diagram for Heed::HeedParticle:

Public Member Functions

 HeedParticle ()
 Default constructor.
 
 HeedParticle (manip_absvol *primvol, const point &pt, const vec &vel, vfloat time, particle_def *fpardef, HeedFieldMap *fieldmap, const bool fcoulomb_scattering=false, const bool floss_only=false, const bool fprint_listing=false)
 
virtual ~HeedParticle ()
 Destructor.
 
HeedParticlecopy () const override
 Clone the particle.
 
void print (std::ostream &file, int l) const override
 Print-out.
 
- Public Member Functions inherited from Heed::eparticle
 eparticle ()=default
 Default constructor.
 
 eparticle (manip_absvol *primvol, const point &pt, const vec &vel, vfloat time, particle_def *fpardef, HeedFieldMap *fieldmap)
 Constructor using velocity vector.
 
virtual ~eparticle ()
 Destructor.
 
- Public Member Functions inherited from Heed::mparticle
 mparticle ()=default
 Default constructor.
 
 mparticle (manip_absvol *primvol, const point &pt, const vec &vel, vfloat ftime, double fmass)
 Constructor, $\gamma - 1$ calculated from the from velocity vector.
 
virtual ~mparticle ()
 Destructor.
 
double kinetic_energy () const
 Get the current kinetic energy.
 
void print (std::ostream &file, int l) const override
 Print-out.
 
mparticlecopy () const override
 Clone the particle.
 
- Public Member Functions inherited from Heed::gparticle
 gparticle ()=default
 Default constructor.
 
 gparticle (manip_absvol *primvol, const point &pt, const vec &vel, vfloat time)
 Constructor.
 
virtual ~gparticle ()
 Destructor.
 
virtual void fly (std::vector< gparticle * > &secondaries)
 Transport the particle.
 
virtual void fly (std::vector< gparticle * > &secondaries, const bool one_step)
 
void set_step_limits (const vfloat fmax_range, const vfloat frad_for_straight, const vfloat fmax_straight_arange, const vfloat fmax_circ_arange)
 Set limits/parameters for trajectory steps.
 
const vecposition () const
 Get the current position of the particle.
 
vfloat time () const
 Get the current time of the particle.
 
const vecdirection () const
 Get the current direction of the particle.
 
bool alive () const
 Alive?
 

Protected Member Functions

void physics (std::vector< gparticle * > &secondaries) override
 Apply any other processes (turn the trajectory, kill the particle, ...).
 
void physics_mrange (double &fmrange) override
 
- Protected Member Functions inherited from Heed::eparticle
int force (const point &pt, vec &f, vec &f_perp, vfloat &mrange) override
 Calculate force components.
 
- Protected Member Functions inherited from Heed::mparticle
void step (std::vector< gparticle * > &secondaries) override
 
void curvature (bool &curved, vec &frelcen, vfloat &fmrange, vfloat prec) override
 
- Protected Member Functions inherited from Heed::gparticle
virtual void change_vol ()
 Move from one volume to another.
 
virtual void physics_after_new_speed (std::vector< gparticle * > &)
 Apply any other processes (turn the trajectory, kill the particle, ...).
 
virtual stvpoint calc_step_to_bord ()
 Determine next position.
 
void turn (const double ctheta, const double stheta)
 Change the direction of the particle.
 
stvpoint switch_new_vol ()
 Generate next position in new volume.
 

Additional Inherited Members

- Static Public Member Functions inherited from Heed::gparticle
static void reset_counter ()
 Reset the counter.
 
- Protected Attributes inherited from Heed::eparticle
particle_defm_pardef = nullptr
 
HeedFieldMapm_fieldMap = nullptr
 Pointer to field map.
 
- Protected Attributes inherited from Heed::mparticle
double m_mass = 0.
 Mass (not mass * speed_of_light^2)
 
double m_curr_ekin = 0.
 Current kinetic energy.
 
double m_orig_ekin = 0.
 Original kinetic energy.
 
double m_prev_ekin = 0.
 Previous kinetic energy.
 
double m_curr_gamma_1 = 0.
 Current $\gamma - 1$.
 
double m_orig_gamma_1 = 0.
 Original $\gamma - 1$.
 
double m_prev_gamma_1 = 0.
 Previous $\gamma - 1$.
 
- Protected Attributes inherited from Heed::gparticle
bool m_alive = false
 Status flag whether the particle is active.
 
long m_nstep = 0
 Step number.
 
long m_nzero_step = 0
 Number of previous steps with zero range (including this step).
 
stvpoint m_origin
 Original point.
 
double m_total_range_from_origin = 0.
 Range from origin to current position.
 
stvpoint m_prevpos
 Previous point.
 
stvpoint m_currpos
 Current point.
 
stvpoint m_nextpos
 Next point.
 
- Static Protected Attributes inherited from Heed::gparticle
static std::atomic< long > s_counter {0L}
 Instance counter.
 
static constexpr long m_max_qzero_step = 100
 Max. number of zero-steps allowed.
 

Detailed Description

Charged particle which can be traced through the geometry.

2003, I. Smirnov

Definition at line 14 of file HeedParticle.h.

Constructor & Destructor Documentation

◆ HeedParticle() [1/2]

Heed::HeedParticle::HeedParticle ( )
inline

Default constructor.

Definition at line 17 of file HeedParticle.h.

17: eparticle() {}
eparticle()=default
Default constructor.

Referenced by copy().

◆ HeedParticle() [2/2]

Heed::HeedParticle::HeedParticle ( manip_absvol * primvol,
const point & pt,
const vec & vel,
vfloat time,
particle_def * fpardef,
HeedFieldMap * fieldmap,
const bool fcoulomb_scattering = false,
const bool floss_only = false,
const bool fprint_listing = false )

Constructor. If fs_loss_only == false only transferred energy is simulated: no deposition of clusters, no generation of virtual photons.

Definition at line 24 of file HeedParticle.cpp.

30 : eparticle(primvol, pt, vel, ftime, fpardef, fieldmap),
31 m_coulomb_scattering(fcoulomb_scattering),
32 m_loss_only(floss_only),
33 m_print_listing(fprint_listing),
34 m_particle_number(s_counter++) {}
static std::atomic< long > s_counter
Instance counter.
Definition gparticle.h:256

◆ ~HeedParticle()

virtual Heed::HeedParticle::~HeedParticle ( )
inlinevirtual

Destructor.

Definition at line 28 of file HeedParticle.h.

28{}

Member Function Documentation

◆ copy()

HeedParticle * Heed::HeedParticle::copy ( ) const
inlineoverridevirtual

Clone the particle.

Reimplemented from Heed::eparticle.

Definition at line 30 of file HeedParticle.h.

30{ return new HeedParticle(*this); }
HeedParticle()
Default constructor.

◆ physics()

void Heed::HeedParticle::physics ( std::vector< gparticle * > & )
overrideprotectedvirtual

Apply any other processes (turn the trajectory, kill the particle, ...).

Reimplemented from Heed::gparticle.

Definition at line 36 of file HeedParticle.cpp.

36 {
37 mfunname("void HeedParticle::physics()");
38 if (m_print_listing) {
39 mcout << "HeedParticle::physics is started\n";
40 Iprintn(mcout, m_currpos.prange);
41 }
42 // Get the step.
43 if (m_currpos.prange <= 0.0) return;
44 const double stp = m_currpos.prange / cm;
45 const vec dir = unit_vec(m_currpos.pt - m_prevpos.pt);
46 const double range = (m_currpos.pt - m_prevpos.pt).length();
47 if (m_print_listing) Iprint3n(mcout, m_prevpos.pt, dir, range);
48 // Get local volume.
49 const absvol* av = m_currpos.volume();
50 auto etcs = dynamic_cast<const EnTransfCS*>(av);
51 if (!etcs) return;
52 HeedMatterDef* hmd = etcs->hmd;
53 MatterDef* matter = hmd->matter;
54 EnergyMesh* emesh = hmd->energy_mesh;
55 const double* aetemp = emesh->get_ae();
56 PointCoorMesh<double, const double*> pcm(emesh->get_q() + 1, &(aetemp));
57 basis tempbas(m_currpos.dir, "tempbas");
58 // Particle mass and energy.
59 const double mp = m_mass * c_squared;
60 const double ep = mp + m_curr_ekin;
61 // Electron mass.
62 const double mt = electron_mass_c2;
63 // Particle velocity.
64 const double invSpeed = 1. / m_prevpos.speed;
65 // Shorthand.
66 const auto sampleTransfer = t_hisran_step_ar<double, std::vector<double>,
67 PointCoorMesh<double, const double*> >;
68 const long qa = matter->qatom();
69 if (m_print_listing) Iprintn(mcout, qa);
70 for (long na = 0; na < qa; ++na) {
71 if (m_print_listing) Iprintn(mcout, na);
72 const long qs = hmd->apacs[na]->get_qshell();
73 for (long ns = 0; ns < qs; ++ns) {
74 if (m_print_listing) Iprintn(mcout, ns);
75 if (etcs->quan[na][ns] <= 0.0) continue;
76 // Sample the number of collisions for this shell.
77 const long qt = pois(etcs->quan[na][ns] * stp);
78 if (m_print_listing) Iprintn(mcout, qt);
79 if (qt <= 0) continue;
80 for (long nt = 0; nt < qt; ++nt) {
81 // Sample the energy transfer in this collision.
82 const double r = sampleTransfer(pcm, etcs->fadda[na][ns], SRANLUX());
83 // Convert to internal units.
84 const double et = r * MeV;
85 m_edep += et;
86 if (m_print_listing) Iprint2n(mcout, nt, et);
87 // Sample the position of the collision.
88 const double arange = SRANLUX() * range;
89 point pt = m_prevpos.pt + dir * arange;
90 if (m_loss_only) continue;
91 if (m_print_listing) mcout << "generating new cluster\n";
92 if (m_store_clusters) {
93 m_clusterBank.emplace_back(HeedCluster(et, pt, na, ns));
94 }
95 // Generate a virtual photon.
96 double theta_p, theta_t;
97 theta_two_part(ep, ep - et, mp, mt, theta_p, theta_t);
98 vec vel;
99 vel.random_conic_vec(fabs(theta_t));
100 vel.down(&tempbas); // direction is OK
101 vel *= c_light;
102 const double t = m_prevpos.time + arange * invSpeed;
103 if (m_print_listing) mcout << "generating new virtual photon\n";
104 HeedPhoton* hp = new HeedPhoton(m_currpos.tid.eid[0], pt, vel, t,
105 m_particle_number, et, m_fieldMap);
106 if (!hp->alive()) {
107 delete hp;
108 continue;
109 }
110 hp->m_photon_absorbed = true;
111 hp->m_delta_generated = false;
112 hp->m_na_absorbing = na;
113 hp->m_ns_absorbing = ns;
114 secondaries.push_back(hp);
115 }
116 }
117 }
118
119 if (m_edep >= m_curr_ekin) {
120 // Accumulated energy loss exceeds the particle's kinetic energy.
121 m_alive = false;
122 }
123
124 if (m_coulomb_scattering) {
125 if (hmd->radiation_length > 0.) {
126 const double x = range / hmd->radiation_length;
127 const double sigma = etcs->sigma_ms * sqrt(x);
128 double theta = sigma * rnorm_improved();
129 turn(cos(theta), sin(theta));
130 }
131 }
132 if (m_print_listing) {
133 Iprintn(mcout, m_edep);
134 mcout << "Exiting HeedParticle::physics\n";
135 }
136}
#define mfunname(string)
HeedFieldMap * m_fieldMap
Pointer to field map.
Definition eparticle.h:34
stvpoint m_prevpos
Previous point.
Definition gparticle.h:274
void turn(const double ctheta, const double stheta)
Change the direction of the particle.
stvpoint m_currpos
Current point.
Definition gparticle.h:276
bool m_alive
Status flag whether the particle is active.
Definition gparticle.h:259
double m_curr_ekin
Current kinetic energy.
Definition mparticle.h:73
double m_mass
Mass (not mass * speed_of_light^2)
Definition mparticle.h:70
DoubleAc cos(const DoubleAc &f)
Definition DoubleAc.cpp:432
double rnorm_improved()
Definition rnorm.h:11
void theta_two_part(const double Ep0, const double Ep1, const double Mp, const double Mt, double &theta_p, double &theta_t)
Scattering angles as function of incident and final projectile energy.
Definition kinem.cpp:28
long pois(const double amu)
Definition pois.cpp:9
T t_hisran_step_ar(const M &mesh, const D &integ_y, T rannum)
Definition tline.h:1412
DoubleAc fabs(const DoubleAc &f)
Definition DoubleAc.h:615
DoubleAc sin(const DoubleAc &f)
Definition DoubleAc.cpp:384
DoubleAc sqrt(const DoubleAc &f)
Definition DoubleAc.cpp:314
#define mcout
Definition prstream.h:126
#define Iprint3n(file, name1, name2, name3)
Definition prstream.h:232
#define Iprintn(file, name)
Definition prstream.h:204
#define Iprint2n(file, name1, name2)
Definition prstream.h:219

◆ physics_mrange()

void Heed::HeedParticle::physics_mrange ( double & fmrange)
overrideprotectedvirtual

Reduce the maximal possible range due to continuous processes. Called from calc_step_to_bord after the call of curvature. but before considering the crossing with volumes. Therefore mrange may be reduced after this.

Reimplemented from Heed::gparticle.

Definition at line 138 of file HeedParticle.cpp.

138 {
139 if (!m_coulomb_scattering) return;
140 // Get local volume and convert it to a cross-section object.
141 const absvol* av = m_currpos.volume();
142 auto etcs = dynamic_cast<const EnTransfCS*>(av);
143 if (!etcs) return;
144 if (etcs->quanC > 0.) {
145 // Make sure the step is smaller than the mean free path between
146 // ionising collisions.
147 fmrange = std::min(fmrange, 0.1 / etcs->quanC);
148 }
149}

◆ print()

void Heed::HeedParticle::print ( std::ostream & file,
int l ) const
overridevirtual

Print-out.

Reimplemented from Heed::eparticle.

Definition at line 151 of file HeedParticle.cpp.

151 {
152 if (l < 0) return;
153 file << "HeedParticle: particle_number=" << m_particle_number << " type=";
154 if (!m_pardef) {
155 file << "none";
156 } else {
157 file << m_pardef->notation;
158 }
159 file << "\n edep=" << m_edep << "\n";
160 if (l <= 1) return;
161 mparticle::print(file, l - 1);
162}
particle_def * m_pardef
Definition eparticle.h:32
void print(std::ostream &file, int l) const override
Print-out.

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