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::gparticle Class Reference

#include <gparticle.h>

+ Inheritance diagram for Heed::gparticle:

Public Member Functions

 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?
 
virtual void print (std::ostream &file, int l) const
 Print-out.
 
virtual gparticlecopy () const
 Clone the particle.
 

Static Public Member Functions

static void reset_counter ()
 Reset the counter.
 

Protected Member Functions

virtual void step (std::vector< gparticle * > &secondaries)
 
virtual void change_vol ()
 Move from one volume to another.
 
virtual void curvature (bool &curved, vec &frelcen, vfloat &fmrange, vfloat prec)
 
virtual void physics_after_new_speed (std::vector< gparticle * > &)
 Apply any other processes (turn the trajectory, kill the particle, ...).
 
virtual void physics (std::vector< gparticle * > &)
 Apply any other processes (turn the trajectory, kill the particle, ...).
 
virtual void physics_mrange (double &fmrange)
 
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.
 

Protected Attributes

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

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

"Geometric particle" (particle that does not interact with materials). It moves along a polyline or circle from one volume to another. Classes for interacting particles should be derived from this base class.

Definition at line 147 of file gparticle.h.

Constructor & Destructor Documentation

◆ gparticle() [1/2]

Heed::gparticle::gparticle ( )
default

Default constructor.

Referenced by copy(), Heed::HeedPhoton::HeedPhoton(), and Heed::mparticle::mparticle().

◆ gparticle() [2/2]

Heed::gparticle::gparticle ( manip_absvol * primvol,
const point & pt,
const vec & vel,
vfloat time )

Constructor.

Definition at line 42 of file gparticle.cpp.

44 : m_prevpos(),
45 m_nextpos() {
46 mfunname("gparticle::gparticle(...)");
47 primvol->m_find_embed_vol(pt, vel, &m_origin.tid);
48 m_origin.pt = pt;
49 if (vel == dv0) {
50 m_origin.dir = dv0;
51 m_origin.speed = 0.0;
52 } else {
53 m_origin.dir = unit_vec(vel);
54 m_origin.speed = vel.length();
55 }
56 m_origin.ptloc = m_origin.pt;
57 m_origin.tid.up_absref(&m_origin.ptloc);
58 m_origin.dirloc = m_origin.dir;
59 m_origin.tid.up_absref(&m_origin.dirloc);
60 m_origin.time = ftime;
61 m_origin.sb = 0;
62 m_origin.s_ent = 1;
63 if (m_origin.tid.eid.empty()) return;
64 m_alive = true;
67 m_nextpos.s_ent = 0;
68}
#define mfunname(string)
stvpoint m_nextpos
Next point.
Definition gparticle.h:278
stvpoint m_prevpos
Previous point.
Definition gparticle.h:274
stvpoint m_currpos
Current point.
Definition gparticle.h:276
stvpoint m_origin
Original point.
Definition gparticle.h:269
bool m_alive
Status flag whether the particle is active.
Definition gparticle.h:259
vec dv0(0, 0, 0)
Definition vec.h:308

◆ ~gparticle()

virtual Heed::gparticle::~gparticle ( )
inlinevirtual

Destructor.

Definition at line 155 of file gparticle.h.

155{}

Member Function Documentation

◆ alive()

bool Heed::gparticle::alive ( ) const
inline

Alive?

Definition at line 195 of file gparticle.h.

195{ return m_alive; }

Referenced by Heed::HeedParticle::physics(), and Heed::HeedParticle_BGM::physics().

◆ calc_step_to_bord()

stvpoint Heed::gparticle::calc_step_to_bord ( )
protectedvirtual

Determine next position.

Definition at line 112 of file gparticle.cpp.

112 {
113 // Calculate next point as step to border.
114 pvecerror("stvpoint gparticle::calc_step_to_bord()");
115 if (m_currpos.sb > 0) {
116 // Just switch to new volume.
117 return switch_new_vol();
118 }
119 bool curved = false;
120 vec relcen;
121 vfloat mrange;
122 curvature(curved, relcen, mrange, m_max_straight_arange);
123 if (mrange <= 0) {
124 // Preserve current point for modification by physics.
125 stvpoint temp(m_currpos);
126 temp.s_ent = 0;
127 return temp;
128 }
129 // Change to local system.
130 m_currpos.tid.up_absref(&relcen);
131 physics_mrange(mrange);
132 trajestep ts(m_max_range, m_rad_for_straight,
133 m_max_straight_arange, m_max_circ_arange,
134 m_currpos.ptloc, m_currpos.dirloc, curved, relcen, mrange,
135 m_currpos.tid.eid.back()->Gavol()->prec);
136 if (ts.mrange <= 0) {
137 stvpoint temp(m_currpos);
138 temp.s_ent = 0;
139 return temp;
140 }
141 // Here the range is calculated:
142 int sb;
143 manip_absvol* faeid = nullptr;
144 m_currpos.volume()->range(ts, 1, sb, faeid);
145 // 1 means inside the volume and makes
146 // the program checking embraced volumes
147 if (ts.s_prec == 0) {
148 // Point is crossed.
149 return stvpoint(m_currpos, ts, sb, 0, faeid);
150 }
151 return stvpoint(m_currpos, ts, ts.mrange, sb, 0, faeid);
152}
virtual void physics_mrange(double &fmrange)
stvpoint switch_new_vol()
Generate next position in new volume.
virtual void curvature(bool &curved, vec &frelcen, vfloat &fmrange, vfloat prec)
Definition gparticle.cpp:91
double vfloat
Definition vfloat.h:16
#define pvecerror(string)
Definition vec.h:28

Referenced by step(), and Heed::mparticle::step().

◆ change_vol()

virtual void Heed::gparticle::change_vol ( )
inlineprotectedvirtual

Move from one volume to another.

Definition at line 217 of file gparticle.h.

217{ m_currpos.volume()->income(this); }

Referenced by step(), and Heed::mparticle::step().

◆ copy()

virtual gparticle * Heed::gparticle::copy ( ) const
inlinevirtual

Clone the particle.

Reimplemented in Heed::eparticle, Heed::HeedDeltaElectron, Heed::HeedParticle, Heed::HeedParticle_BGM, Heed::HeedPhoton, and Heed::mparticle.

Definition at line 203 of file gparticle.h.

203{ return new gparticle(*this); }
gparticle()=default
Default constructor.

◆ curvature()

void Heed::gparticle::curvature ( bool & curved,
vec & frelcen,
vfloat & fmrange,
vfloat prec )
protectedvirtual

Set curvature. Can also change the direction at the current position.

Parameters
curvedflag whether the trajectory is curved
frelcenposition of the centre of rotation relative to currpos.
fmrangestep range
prectolerance for checking if the force is parallel or antiparallel to dir. In the latter case, the range is restricted by the end point. In calc_step_to_bord() it is set to m_max_straight_arange.

Reimplemented in Heed::mparticle.

Definition at line 91 of file gparticle.cpp.

92 {
93 curved = false;
94 frelcen.x = 0.;
95 frelcen.y = 0.;
96 frelcen.z = 0.;
97 fmrange = max_vfloat;
98 /* The following is for debug
99 vec field(0,1,0);
100 vfloat rad = 10;
101 if (length(m_currpos.dir) > 0 && check_par(m_currpos.dir, field) == 0) {
102 curved = true;
103 vfloat coef = sin2vec(m_currpos.dir, field);
104 rad = rad / coef;
105 frelcen = unit_vec(m_currpos.dir || field) * rad;
106 }
107 */
108}

Referenced by calc_step_to_bord().

◆ direction()

const vec & Heed::gparticle::direction ( ) const
inline

Get the current direction of the particle.

Definition at line 193 of file gparticle.h.

193{ return m_currpos.dir; }

Referenced by Garfield::TrackHeed::TransportPhoton().

◆ fly() [1/2]

virtual void Heed::gparticle::fly ( std::vector< gparticle * > & secondaries)
inlinevirtual

Transport the particle.

Definition at line 158 of file gparticle.h.

158 {
159 mfunname("virtual void gparticle::fly()");
160 while (m_alive) {
161 step(secondaries);
162 physics(secondaries);
163 }
164 }
virtual void step(std::vector< gparticle * > &secondaries)
Definition gparticle.cpp:70
virtual void physics(std::vector< gparticle * > &)
Apply any other processes (turn the trajectory, kill the particle, ...).
Definition gparticle.h:238

Referenced by Garfield::TrackHeed::NewTrack(), Garfield::TrackHeed::TransportDeltaElectron(), and Garfield::TrackHeed::TransportPhoton().

◆ fly() [2/2]

virtual void Heed::gparticle::fly ( std::vector< gparticle * > & secondaries,
const bool one_step )
inlinevirtual

Definition at line 166 of file gparticle.h.

166 {
167 mfunname("virtual void gparticle::fly()");
168 int nstep = 0;
169 while (m_alive) {
170 step(secondaries);
171 physics(secondaries);
172 ++nstep;
173 if (one_step && nstep >= 2) break;
174 }
175 }

◆ physics()

virtual void Heed::gparticle::physics ( std::vector< gparticle * > & )
inlineprotectedvirtual

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

Reimplemented in Heed::HeedParticle, Heed::HeedParticle_BGM, and Heed::HeedPhoton.

Definition at line 238 of file gparticle.h.

238{}

Referenced by fly(), and fly().

◆ physics_after_new_speed()

virtual void Heed::gparticle::physics_after_new_speed ( std::vector< gparticle * > & )
inlineprotectedvirtual

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

Reimplemented in Heed::HeedDeltaElectron, and Heed::HeedPhoton.

Definition at line 235 of file gparticle.h.

235{}

Referenced by step(), and Heed::mparticle::step().

◆ physics_mrange()

void Heed::gparticle::physics_mrange ( double & fmrange)
protectedvirtual

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 in Heed::HeedDeltaElectron, and Heed::HeedParticle.

Definition at line 110 of file gparticle.cpp.

110{}

Referenced by calc_step_to_bord().

◆ position()

const vec & Heed::gparticle::position ( ) const
inline

Get the current position of the particle.

Definition at line 189 of file gparticle.h.

189{ return m_currpos.pt.v; }

Referenced by Garfield::TrackHeed::TransportPhoton().

◆ print()

void Heed::gparticle::print ( std::ostream & file,
int l ) const
virtual

Print-out.

Reimplemented in Heed::eparticle, Heed::HeedDeltaElectron, Heed::HeedParticle, Heed::HeedParticle_BGM, Heed::HeedPhoton, and Heed::mparticle.

Definition at line 208 of file gparticle.cpp.

208 {
209 if (l < 0) return;
210 Ifile << "gparticle(l=" << l << "): alive=" << m_alive << " nstep=" << m_nstep
211 << " total_range_from_origin=" << m_total_range_from_origin
212 << " nzero_step=" << m_nzero_step << '\n';
213 if (l <= 1) return;
214 indn.n += 2;
215 if (l - 5 >= 0) {
216 Ifile << "origin point:\n";
217 indn.n += 2;
218 m_origin.print(file, l - 2);
219 indn.n -= 2;
220 }
221 if (l - 4 >= 0) {
222 Ifile << "previous point:\n";
223 indn.n += 2;
224 m_prevpos.print(file, l - 1);
225 indn.n -= 2;
226 }
227 if (l - 2 >= 0) {
228 Ifile << "current point:\n";
229 indn.n += 2;
230 m_currpos.print(file, l);
231 indn.n -= 2;
232 }
233 if (l - 3 >= 0) {
234 Ifile << "next point:\n";
235 indn.n += 2;
236 m_nextpos.print(file, l - 1);
237 indn.n -= 2;
238 }
239 indn.n -= 2;
240 file.flush();
241}
double m_total_range_from_origin
Range from origin to current position.
Definition gparticle.h:271
long m_nzero_step
Number of previous steps with zero range (including this step).
Definition gparticle.h:266
long m_nstep
Step number.
Definition gparticle.h:262
indentation indn
Definition prstream.cpp:15
#define Ifile
Definition prstream.h:195

Referenced by Heed::HeedPhoton::print(), and Heed::mparticle::print().

◆ reset_counter()

static void Heed::gparticle::reset_counter ( )
inlinestatic

Reset the counter.

Definition at line 198 of file gparticle.h.

198{ s_counter = 0L; }
static std::atomic< long > s_counter
Instance counter.
Definition gparticle.h:256

Referenced by Garfield::TrackHeed::NewTrack().

◆ set_step_limits()

void Heed::gparticle::set_step_limits ( const vfloat fmax_range,
const vfloat frad_for_straight,
const vfloat fmax_straight_arange,
const vfloat fmax_circ_arange )
inline

Set limits/parameters for trajectory steps.

Definition at line 178 of file gparticle.h.

181 {
182 m_max_range = fmax_range;
183 m_rad_for_straight = frad_for_straight;
184 m_max_straight_arange = fmax_straight_arange;
185 m_max_circ_arange = fmax_circ_arange;
186 }

Referenced by Garfield::TrackHeed::NewTrack().

◆ step()

void Heed::gparticle::step ( std::vector< gparticle * > & secondaries)
protectedvirtual

Assign prevpos = currpos and currpos = nextpos, call change_vol if necessary and update nextpos = calc_step_to_bord(). Derived versions can also recalculate the direction at currpos right after updating currpos = nextpos. This is especially important in the case when the motion is approximated by straight-line steps, but there is a (magnetic) field which slightly
deflects the trajectory. In this case, the velocity is corrected at the end point of each interval, but the position is not.

Reimplemented in Heed::mparticle.

Definition at line 70 of file gparticle.cpp.

70 {
71 // Make step to next point and calculate new step to border.
72 mfunname("void gparticle::step()");
76 m_nstep++;
77 if (m_currpos.prange == 0) {
80 "too many zero steps, possible infinite loop\n", mcerr);
81 } else {
82 m_nzero_step = 0;
83 }
84 physics_after_new_speed(secondaries);
85 if (m_alive) {
86 if (m_prevpos.tid != m_currpos.tid) change_vol();
88 }
89}
#define check_econd12a(a, sign, b, add, stream)
virtual void physics_after_new_speed(std::vector< gparticle * > &)
Apply any other processes (turn the trajectory, kill the particle, ...).
Definition gparticle.h:235
virtual stvpoint calc_step_to_bord()
Determine next position.
static constexpr long m_max_qzero_step
Max. number of zero-steps allowed.
Definition gparticle.h:264
virtual void change_vol()
Move from one volume to another.
Definition gparticle.h:217
#define mcerr
Definition prstream.h:128

Referenced by fly(), and fly().

◆ switch_new_vol()

stvpoint Heed::gparticle::switch_new_vol ( )
protected

Generate next position in new volume.

Definition at line 168 of file gparticle.cpp.

168 {
169 // Generate next position in new volume.
170 mfunname("stvpoint gparticle::switch_new_vol(void)");
171 manip_absvol_treeid tidl;
172 manip_absvol* eidl = nullptr;
173 stvpoint nextp = m_currpos;
174 point pth = nextp.pt;
175 // Search from primary
176 // In this case it does not necessarily switch to encountered volume
177 // namely nextp.next_eid
178 // Borders of two volumes may coincide. Thus it should look for
179 // the deepest volume at this point.
180 bool ok = false;
181 while (!ok) {
182 nextp.tid.eid[0]->m_find_embed_vol(pth, nextp.dir, &tidl);
183 if (tidl.eid.empty()) {
184 m_alive = false;
185 break;
186 }
187 // By default, assume switching to new volume.
188 int s_e = 1;
189 if (tidl == nextp.tid) {
190 // Remains in the same old volume, may be numerical error
191 // Will probably repeat attempt to switch at the same steps until ok.
192 s_e = 0;
193 double curprec = nextp.volume()->prec;
194 if (m_currpos.prange <= curprec) {
195 // very bad case, to repeat the trial.
196 vec additional_dist = nextp.dir * curprec;
197 pth = pth + additional_dist;
198 tidl = manip_absvol_treeid();
199 continue;
200 }
201 }
202 return stvpoint(pth, nextp.dir, nextp.speed, tidl, 0.0, nextp.time, 0, s_e,
203 eidl);
204 }
205 return stvpoint();
206}

Referenced by calc_step_to_bord().

◆ time()

vfloat Heed::gparticle::time ( ) const
inline

Get the current time of the particle.

Definition at line 191 of file gparticle.h.

191{ return m_currpos.time; }

Referenced by Heed::eparticle::eparticle(), gparticle(), Heed::HeedPhoton::HeedPhoton(), and Garfield::TrackHeed::TransportPhoton().

◆ turn()

void Heed::gparticle::turn ( const double ctheta,
const double stheta )
protected

Change the direction of the particle.

Definition at line 154 of file gparticle.cpp.

154 {
155
156 vec dir = m_currpos.dir;
157 basis temp(dir, "temp");
158 vec vturn;
159 vturn.random_round_vec();
160 vturn = vturn * stheta;
161 vec new_dir(vturn.x, vturn.y, ctheta);
162 new_dir.down(&temp);
163 m_currpos.dir = new_dir;
164 m_currpos.dirloc = m_currpos.dir;
165 m_currpos.tid.up_absref(&m_currpos.dirloc);
166}

Referenced by Heed::HeedParticle::physics(), and Heed::HeedDeltaElectron::physics_after_new_speed().

Member Data Documentation

◆ m_alive

◆ m_currpos

◆ m_max_qzero_step

long Heed::gparticle::m_max_qzero_step = 100
staticconstexprprotected

Max. number of zero-steps allowed.

Definition at line 264 of file gparticle.h.

Referenced by step(), and Heed::mparticle::step().

◆ m_nextpos

stvpoint Heed::gparticle::m_nextpos
protected

Next point.

Definition at line 278 of file gparticle.h.

Referenced by gparticle(), Heed::HeedPhoton::physics(), print(), step(), and Heed::mparticle::step().

◆ m_nstep

long Heed::gparticle::m_nstep = 0
protected

Step number.

Definition at line 262 of file gparticle.h.

Referenced by print(), step(), and Heed::mparticle::step().

◆ m_nzero_step

long Heed::gparticle::m_nzero_step = 0
protected

Number of previous steps with zero range (including this step).

Definition at line 266 of file gparticle.h.

Referenced by print(), step(), and Heed::mparticle::step().

◆ m_origin

stvpoint Heed::gparticle::m_origin
protected

Original point.

Definition at line 269 of file gparticle.h.

Referenced by gparticle(), Heed::mparticle::mparticle(), and print().

◆ m_prevpos

stvpoint Heed::gparticle::m_prevpos
protected

◆ m_total_range_from_origin

double Heed::gparticle::m_total_range_from_origin = 0.
protected

Range from origin to current position.

Definition at line 271 of file gparticle.h.

Referenced by print(), step(), and Heed::mparticle::step().

◆ s_counter

std::atomic< long > Heed::gparticle::s_counter {0L}
staticprotected

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