File indexing completed on 2024-04-06 11:56:05
0001 #ifndef __GLOBALS_HH
0002 #define __GLOBALS_HH
0003
0004
0005 #include <string>
0006 #include <cfloat>
0007 #include <cmath>
0008
0009 typedef std::string ALIstring;
0010
0011 typedef long double ALIdouble;
0012
0013 typedef float ALIfloat;
0014
0015 typedef int ALIint;
0016
0017 typedef unsigned int ALIuint;
0018
0019 typedef bool ALIbool;
0020
0021
0022 const ALIdouble PI = M_PI;
0023
0024 const double ALI_DBL_MAX = DBL_MAX;
0025 const double ALI_DBL_MIN = 10. / ALI_DBL_MAX;
0026
0027 namespace CLHEP {}
0028
0029 #endif