mirror of
https://github.com/gwm17/catima.git
synced 2024-11-23 02:38:51 -05:00
24 lines
598 B
C
24 lines
598 B
C
|
|
||
|
namespace catima{
|
||
|
|
||
|
/**
|
||
|
* return srim stopping power
|
||
|
* @param pZ - projectile Z
|
||
|
* @param pZ - material Z
|
||
|
* @param energy - projectile energy in MeV/u unit
|
||
|
*/
|
||
|
double srim_dedx_e(int pZ, int tZ, double energy);
|
||
|
|
||
|
/**
|
||
|
* return SRIM proton stopping power
|
||
|
* @param Z - proton number of material
|
||
|
* @param energy - energy per nuclein in MeV/u
|
||
|
*/
|
||
|
double p_se(int Z, double energy);
|
||
|
double p_se95(int Z, double energy);
|
||
|
|
||
|
extern const double pse[92][8];
|
||
|
extern const double atima_lambda_screening[92];
|
||
|
extern const double atima_vfermi[92];
|
||
|
extern const double proton_stopping_coef[92][8];
|
||
|
}
|