Garfield++ v1r0
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
4/*
5Continuous energy loss of electron similar to GDRELE from GEANT 3.21
6
72003, I. Smirnov
8*/
9
10namespace Heed {
11
12double e_cont_enloss(const double ratio_Z_to_A, const double I_eff,
13 const double density, const double Ekin, const double Ecut,
14 const double z);
15
16// z = -1 (electron) or +1 (positron)
17// returns the positive value in units
18// [energy] / [length]
19// (internal units of CLHEP/Units/PhysicalConstants.h)
20// It means the energy transfer per unit density and per unit length passed.
21// To convert it to real values it need to multiply it by real density and
22// by real length.
23//
24
25}
26
27#endif
Definition: BGMesh.cpp:3
double e_cont_enloss(double ratio_Z_to_A, double I_eff, double density, double Ekin, double Ecut, double z)