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

Point in space, time and velocity. More...

#include <gparticle.h>

Public Member Functions

 stvpoint ()=default
 Default constructor.
 
 stvpoint (const point &fpt, const vec &fdir, vfloat fspeed, manip_absvol_treeid &ftid, vfloat fprange, vfloat ftime, int fsb, int fs_ent, manip_absvol *faeid)
 Constructor.
 
 stvpoint (const stvpoint &pstv, const trajestep &ts, vfloat mrange, int fsb, int fs_ent, manip_absvol *faeid)
 
 stvpoint (const stvpoint &pstv, const trajestep &ts, int fsb, int fs_ent, manip_absvol *faeid)
 
 stvpoint (const stvpoint &)=default
 Copy constructor.
 
stvpointoperator= (const stvpoint &)=default
 Copy assignment operator.
 
void print (std::ostream &file, int l) const
 
absvolvolume ()
 

Public Attributes

point pt
 Coordinates in the first system in the tree.
 
vec dir
 Unit vector, in the first system in the tree.
 
point ptloc
 Coordinates in the local system (last system in the tree).
 
vec dirloc
 Unit vector, in the local system (last system in the tree).
 
vfloat speed = 0.
 Longitudinal velocity.
 
manip_absvol_treeid tid
 
int sb = 0
 
int s_ent = 0
 
manip_absvolnext_eid = nullptr
 
vfloat prange = 0.
 Range from previous point.
 
vfloat time = 0.
 

Detailed Description

Point in space, time and velocity.

Definition at line 21 of file gparticle.h.

Constructor & Destructor Documentation

◆ stvpoint() [1/5]

Heed::stvpoint::stvpoint ( )
default

Default constructor.

Referenced by operator=(), stvpoint(), stvpoint(), and stvpoint().

◆ stvpoint() [2/5]

Heed::stvpoint::stvpoint ( const point & fpt,
const vec & fdir,
vfloat fspeed,
manip_absvol_treeid & ftid,
vfloat fprange,
vfloat ftime,
int fsb,
int fs_ent,
manip_absvol * faeid )
inline

Constructor.

Definition at line 53 of file gparticle.h.

56 : pt(fpt),
57 dir(unit_vec(fdir)),
58 speed(fspeed),
59 tid(ftid),
60 sb(fsb),
61 s_ent(fs_ent),
62 next_eid(faeid),
63 prange(fprange),
64 time(ftime) {
65 ptloc = pt;
66 tid.up_absref(&ptloc);
67 dirloc = dir;
68 tid.up_absref(&dirloc);
69 }
manip_absvol * next_eid
Definition gparticle.h:45
vec dirloc
Unit vector, in the local system (last system in the tree).
Definition gparticle.h:30
vec dir
Unit vector, in the first system in the tree.
Definition gparticle.h:26
vfloat prange
Range from previous point.
Definition gparticle.h:47
vfloat speed
Longitudinal velocity.
Definition gparticle.h:32
point pt
Coordinates in the first system in the tree.
Definition gparticle.h:24
manip_absvol_treeid tid
Definition gparticle.h:33
point ptloc
Coordinates in the local system (last system in the tree).
Definition gparticle.h:28

◆ stvpoint() [3/5]

Heed::stvpoint::stvpoint ( const stvpoint & pstv,
const trajestep & ts,
vfloat mrange,
int fsb,
int fs_ent,
manip_absvol * faeid )
inline

Constructor.

Parameters
pstvprevious point
tstrajectory step (in the local system)
mrangestep length (may be less than the one in ts)
fsbposition flag
fs_ent"entering" flag
faeidnext volume

Definition at line 78 of file gparticle.h.

80 : pt(),
81 dir(),
82 ptloc(),
83 dirloc(),
84 speed(pstv.speed),
85 tid(pstv.tid),
86 sb(fsb),
87 s_ent(fs_ent),
88 next_eid(faeid),
89 prange(mrange) {
90 if (pstv.speed == 0) {
91 time = pstv.time; // just to put anything
92 } else {
93 // If speed is changed, this time is to be corrected in derivative class
94 time = pstv.time + mrange / pstv.speed;
95 }
96 ts.Gnextpoint(mrange, ptloc, dirloc);
97 pt = ptloc;
98 tid.down_absref(&pt);
99 dir = dirloc;
100 tid.down_absref(&dir);
101 }

◆ stvpoint() [4/5]

Heed::stvpoint::stvpoint ( const stvpoint & pstv,
const trajestep & ts,
int fsb,
int fs_ent,
manip_absvol * faeid )
inline

Constructor.

Parameters
pstvprevious point
tstrajectory step (in the local system)
fsbposition flag
fs_ent"entering" flag
faeidnext volume

Definition at line 109 of file gparticle.h.

111 : pt(),
112 dir(),
113 ptloc(),
114 dirloc(),
115 speed(pstv.speed),
116 tid(pstv.tid),
117 sb(fsb),
118 s_ent(fs_ent),
119 next_eid(faeid),
120 prange(ts.mrange) {
121 if (pstv.speed == 0) {
122 time = pstv.time; // just to put anything
123 } else {
124 // If speed is changed, this time is to be corrected in derivative class
125 time = pstv.time + ts.mrange / pstv.speed;
126 }
127 ptloc = ts.mpoint;
128 point temp;
129 ts.Gnextpoint(ts.mrange, temp, dirloc);
130 pt = ptloc;
131 tid.down_absref(&pt);
132 dir = dirloc;
133 tid.down_absref(&dir);
134 }

◆ stvpoint() [5/5]

Heed::stvpoint::stvpoint ( const stvpoint & )
default

Copy constructor.

Member Function Documentation

◆ operator=()

stvpoint & Heed::stvpoint::operator= ( const stvpoint & )
default

Copy assignment operator.

◆ print()

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

Definition at line 16 of file gparticle.cpp.

16 {
17 if (l < 0) return;
18 Ifile << "stvpoint: sb=" << sb << " s_ent=" << s_ent << " prange=" << prange
19 << " time=" << time << '\n';
20 indn.n += 2;
21 Ifile << "position:\n" << pt << ptloc;
22 Ifile << "direction:\n" << dir << dirloc;
23 Ifile << "speed=" << speed << '\n';
24 if (tid.eid.empty()) {
25 Ifile << "point is outside universe\n";
26 file.flush();
27 indn.n -= 2;
28 return;
29 }
30 tid.print(file, 1);
31 char s[100];
32 if (sb == 2) {
33 next_eid->m_chname(s);
34 Ifile << "next volume name " << s << '\n';
35 }
36 indn.n -= 2;
37 file.flush();
38}
indentation indn
Definition prstream.cpp:15
#define Ifile
Definition prstream.h:195

◆ volume()

absvol * Heed::stvpoint::volume ( )
inline

Definition at line 140 of file gparticle.h.

140{ return tid.G_lavol(); }

Referenced by Heed::gparticle::switch_new_vol().

Member Data Documentation

◆ dir

vec Heed::stvpoint::dir

Unit vector, in the first system in the tree.

Definition at line 26 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), stvpoint(), and Heed::gparticle::switch_new_vol().

◆ dirloc

vec Heed::stvpoint::dirloc

Unit vector, in the local system (last system in the tree).

Definition at line 30 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), and stvpoint().

◆ next_eid

manip_absvol* Heed::stvpoint::next_eid = nullptr

Definition at line 45 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), and stvpoint().

◆ prange

vfloat Heed::stvpoint::prange = 0.

Range from previous point.

Definition at line 47 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), and stvpoint().

◆ pt

point Heed::stvpoint::pt

Coordinates in the first system in the tree.

Definition at line 24 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), stvpoint(), and Heed::gparticle::switch_new_vol().

◆ ptloc

point Heed::stvpoint::ptloc

Coordinates in the local system (last system in the tree).

Definition at line 28 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), and stvpoint().

◆ s_ent

int Heed::stvpoint::s_ent = 0

"Entering flag". 1 - entering new volume, 0 otherwise. Embraced volume is also considered new.

Definition at line 43 of file gparticle.h.

Referenced by Heed::gparticle::calc_step_to_bord(), print(), stvpoint(), stvpoint(), and stvpoint().

◆ sb

int Heed::stvpoint::sb = 0

Position flag 0 - inside volume, or unknown 1 - on the border of the volume 2 - on the border of an embraced volume

Definition at line 39 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), and stvpoint().

◆ speed

vfloat Heed::stvpoint::speed = 0.

Longitudinal velocity.

Definition at line 32 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), stvpoint(), and Heed::gparticle::switch_new_vol().

◆ tid

manip_absvol_treeid Heed::stvpoint::tid

Definition at line 33 of file gparticle.h.

Referenced by print(), stvpoint(), stvpoint(), stvpoint(), Heed::gparticle::switch_new_vol(), and volume().

◆ time

vfloat Heed::stvpoint::time = 0.

Definition at line 48 of file gparticle.h.

Referenced by print(), stvpoint(), and Heed::gparticle::switch_new_vol().


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