Garfield++ v2r0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
HeedCondElectron.h
Go to the documentation of this file.
1#ifndef HEEDCONDELECTRON
2#define HEEDCONDELECTRON
3
4#include <vector>
6
7namespace Heed {
8
9/// Conduction electrons deposited in the sensitive medium.
10/// Usually these are electron-ion pairs created by the delta-electron.
11/// In addition, the delta-electron is itself converted in conduction electron
12/// at the end of its route. In this case the ion may be located somewhere else.
13/// To reduce the computer expenses, the position of conduction electron
14/// is determined only in the local coordinate system ("deepest" volume).
15///
16/// 2003, I. Smirnov
17
19 public:
20 /// Position (in the local system).
22 /// Time
23 double time;
25 /// Constructor
26 HeedCondElectron(const point& fptloc, const double ftime)
27 : ptloc(fptloc), time(ftime) {}
28 void print(std::ostream& file, int l) const;
29};
30}
31
32#endif
void print(std::ostream &file, int l) const
HeedCondElectron(const point &fptloc, const double ftime)
Constructor.
point ptloc
Position (in the local system).
Point.
Definition: vec.h:374
Definition: BGMesh.cpp:5