Garfield++ 3.0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
e_cont_enloss.h
Go to the documentation of this file.
1#ifndef E_CONT_ENLOSS_H
2#define E_CONT_ENLOSS_H
3
4namespace Heed {
5
6/// Continuous energy loss of electron.
7/// Similar to GDRELE from GEANT 3.21
8/// 2003, I. Smirnov
9double e_cont_enloss(const double ratio_Z_to_A, const double I_eff,
10 const double density, const double Ekin, const double Ecut,
11 const double z);
12
13// z = -1 (electron) or +1 (positron)
14// returns the positive value in units
15// [energy] / [length]
16// (internal units of CLHEP/Units/PhysicalConstants.h)
17// It means the energy transfer per unit density and per unit length passed.
18// To convert it to real values it need to multiply it by real density and
19// by real length.
20//
21}
22
23#endif
Definition: BGMesh.cpp:6
double e_cont_enloss(double ratio_Z_to_A, double I_eff, double density, double Ekin, double Ecut, double z)