00001 #ifndef __GLOBALS_HH 00002 #define __GLOBALS_HH 00003 00004 //#include <ospace/std/string> 00005 #include <string> 00006 #include <float.h> 00007 #include <math.h> 00008 00009 typedef std::string ALIstring; 00010 00011 typedef long double ALIdouble; 00012 00013 typedef float ALIfloat; 00014 00015 typedef int ALIint; 00016 00017 typedef unsigned int ALIuint; 00018 00019 typedef bool ALIbool; 00020 00021 //const double ZERO = 1.E-50 00022 const ALIdouble PI = M_PI; //2 * acos(0.0); 00023 00024 const double ALI_DBL_MAX = DBL_MAX; 00025 const double ALI_DBL_MIN = 10./ALI_DBL_MAX; 00026 00027 namespace CLHEP{} 00028 00029 #endif