5#ifndef G_FUNDAMENTAL_CONSTANTS_H
6#define G_FUNDAMENTAL_CONSTANTS_H
10static const double Pi = 3.1415926535897932384626433832795;
11static const double TwoPi = 2. * Pi;
12static const double HalfPi = 0.5 * Pi;
13static const double Pi2 = Pi * Pi;
15static const double DegreeToRad = Pi / 180.;
16static const double RadToDegree = 180. / Pi;
19static const double Gamma = 0.577215664901532861;
21static const double CLog2 = 0.693147180559945309417;
22static const double Sqrt2 = 1.4142135623730950488016887242097;
25static const double ElectronMass = 0.510998910e6;
26static const double MuonMass = 105.658367e6;
27static const double ProtonMass = 938.272013e6;
28static const double NeutronMass = 939.56536e6;
31static const double FineStructureConstant = 7.2973525376e-3;
33static const double Hbar = 6.58211899e-7;
35static const double HbarC = 197.3269631e-7;
37static const double ElectronMassGramme = 9.10938215e-28;
39static const double AtomicMassUnit = 1.660538782e-24;
40static const double AtomicMassUnitElectronVolt = 931.494028e6;
42static const double BohrRadius = 0.52917720859e-8;
44static const double RydbergEnergy = 13.60569193;
46static const double SpeedOfLight = 29.9792458;
48static const double ClassicalElectronRadius = 2.8179402894e-13;
50static const double ElementaryCharge = 1.602176487e-4;
52static const double OmegaCyclotronOverB = 1.758820150e-3;
54static const double BoltzmannConstant = 8.617343e-5;
56static const double VacuumPermittivity = 88.54187817;
57static const double FourPiEpsilon0 = 4. * Pi * VacuumPermittivity;
58static const double TwoPiEpsilon0 = TwoPi * VacuumPermittivity;
60static const double LoschmidtNumber = 2.6867774e19;
62static const double AvogadroConstant = 6.02214179e23;
64static const double AtmosphericPressure = 760.;
66static const double ZeroCelsius = 273.15;