5#ifndef MCXRAYTRANSPORT_CONSTANTS_H
6#define MCXRAYTRANSPORT_CONSTANTS_H
13const double PI = 3.14159265358979323846;
14const double EPSILON = 1e-9;
15const double INF = std::numeric_limits<double>::infinity();
16const double ELECTRON_REST_MASS = 0.51099895000E6;
17const double ELECTRON_CHARGE = 1.6021766208e-19;
18const double ELECTRON_RADIUS = 2.8179403227e-13;
19const double SPEED_OF_LIGHT = 299792458E2;
20const double PLANCK_CONSTANT = 4.135667662e-15;
21const double NUMBER_DENSITY_AT_STP = 0.02504E21;
22const double AVOGADRO_CONSTANT = 6.022140857e23;
23const double ALPHA = ELECTRON_REST_MASS/(sqrt(2)*PLANCK_CONSTANT*SPEED_OF_LIGHT*1E8);