Garfield++ v1r0
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/*
5Some kinematics of particles.
6Author I.B.Smirnov, 2003
7*/
8
9namespace Heed {
10
11// Scattering of moving projectile of target in rest,
12// cos theta as function of incident and final energy of progectile.
13
14double cos_theta_two_part(double Ep0, double Ep1, double Mp, double Mt);
15
16void theta_two_part(double Ep0, double Ep1, double Mp, double Mt,
17 double& theta_p, double& theta_t);
18
19}
20
21#endif
Definition: BGMesh.cpp:3
double cos_theta_two_part(double Ep0, double Ep1, double Mp, double Mt)
Definition: kinem.cpp:17
void theta_two_part(double Ep0, double Ep1, double Mp, double Mt, double &theta_p, double &theta_t)
Definition: kinem.cpp:31