Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:06:46

0001 #ifndef RIVET_MATH_CONSTANTS
0002 #define RIVET_MATH_CONSTANTS
0003 
0004 #include "Rivet/Math/MathConstants.hh"
0005 #include "Rivet/Math/Units.hh"
0006 
0007 namespace Rivet {
0008 
0009   constexpr double     pi  = M_PI;
0010   constexpr double  twopi  = 2*pi;
0011   constexpr double halfpi  = pi/2;
0012   constexpr double     pi2 = pi*pi;
0013 
0014   constexpr double c_light = 2.99792458e8;
0015 
0016   constexpr double degree = pi / 180.0;
0017 
0018 }
0019 
0020 #endif