1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-22 18:28:51 -05:00
catima/cwrapper.h
2019-10-08 20:25:30 +02:00

51 lines
1.0 KiB
C

#ifndef CATIMA_CWRAPPER
#define CATIMA_CWRAPPER
#ifdef __cplusplus
extern "C" {
#endif
struct CatimaResult{
double Ein;
double Eout;
double Eloss;
double range;
double dEdxi;
double dEdxo;
double sigma_E;
double sigma_a;
double sigma_r;
double tof;
};
enum z_eff_type {
none = 0,
pierce_blann = 1,
anthony_landorf = 2,
hubert = 3,
winger = 4,
schiwietz = 5,
global = 6,
atima14 = 7
};
struct CatimaConfig {
char z_effective;
};
struct CatimaConfig catima_defaults = {none};
typedef struct CatimaResult CatimaResult;
CatimaResult catima_calculate(double pa, int pz, double T, double ta, double tz, double thickness, double density);
double catima_angular_straggling_from_E(double pa, int pz, double Tin, double Tout,double ta, double tz);
double catima_energy_straggling_from_E(double pa, int pz, double Tin, double Tout,double ta, double tz);
#ifdef __cplusplus
}
#endif
#endif