41#ifndef HEP_PHYSICAL_CONSTANTS_H
42#define HEP_PHYSICAL_CONSTANTS_H
44#include "CLHEP/Units/defs.h"
45#include "CLHEP/Units/SystemOfUnits.h"
52static constexpr double Avogadro = 6.02214076e+23/mole;
58static constexpr double c_light = 2.99792458e+8 * m/s;
59static constexpr double c_squared = c_light * c_light;
66static constexpr double h_Planck = 6.62607015e-34 * joule*s;
67static constexpr double hbar_Planck = h_Planck/twopi;
68static constexpr double hbarc = hbar_Planck * c_light;
69static constexpr double hbarc_squared = hbarc * hbarc;
74static constexpr double electron_charge = - eplus;
75static constexpr double e_squared = eplus * eplus;
82static constexpr double electron_mass_c2 = 0.510998910 * MeV;
83static constexpr double proton_mass_c2 = 938.272013 * MeV;
84static constexpr double neutron_mass_c2 = 939.56536 * MeV;
85static constexpr double amu_c2 = 931.494028 * MeV;
86static constexpr double amu = amu_c2/c_squared;
92static constexpr double mu0 = 4*pi*1.e-7 * henry/m;
93static constexpr double epsilon0 = 1./(c_squared*mu0);
98static constexpr double elm_coupling = e_squared/(4*pi*epsilon0);
99static constexpr double fine_structure_const = elm_coupling/hbarc;
100static constexpr double classic_electr_radius = elm_coupling/electron_mass_c2;
101static constexpr double electron_Compton_length = hbarc/electron_mass_c2;
102static constexpr double Bohr_radius = electron_Compton_length/fine_structure_const;
104static constexpr double alpha_rcl2 = fine_structure_const
105 *classic_electr_radius
106 *classic_electr_radius;
108static constexpr double twopi_mc2_rcl2 = twopi*electron_mass_c2
109 *classic_electr_radius
110 *classic_electr_radius;
112static constexpr double Bohr_magneton = (eplus*hbarc*c_light)/(2*electron_mass_c2);
113static constexpr double nuclear_magneton = (eplus*hbarc*c_light)/(2*proton_mass_c2);
118static constexpr double k_Boltzmann = 8.617333e-11 * MeV/kelvin;
123static constexpr double STP_Temperature = 273.15*kelvin;
124static constexpr double STP_Pressure = 1.*atmosphere;
125static constexpr double kGasThreshold = 10.*mg/cm3;
130static constexpr double universe_mean_density = 1.e-25*
g/cm3;
134#ifdef ENABLE_BACKWARDS_COMPATIBILITY
136using namespace CLHEP;