Garfield++ v2r0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
kinem.h
Go to the documentation of this file.
1#ifndef KINEM_H
2#define KINEM_H
3
4// I.B.Smirnov, 2003
5
6namespace Heed {
7
8/// Scattering of moving projectile off a target at rest,
9/// cos theta as function of incident and final projectile energy.
10double cos_theta_two_part(const double Ep0, const double Ep1, const double Mp,
11 const double Mt);
12
13/// Scattering angles as function of incident and final projectile energy.
14void theta_two_part(const double Ep0, const double Ep1, const double Mp,
15 const double Mt, double& theta_p, double& theta_t);
16}
17
18#endif
Definition: BGMesh.cpp:5
double cos_theta_two_part(const double Ep0, const double Ep1, const double Mp, const double Mt)
Definition: kinem.cpp:16
void theta_two_part(const double Ep0, const double Ep1, const double Mp, const double Mt, double &theta_p, double &theta_t)
Scattering angles as function of incident and final projectile energy.
Definition: kinem.cpp:28