00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 #ifndef templates_h
00051 #define templates_h 1
00052
00053 #include <limits>
00054 #include <climits>
00055
00056
00057
00058
00059
00060
00061 #ifndef HIGH_PRECISION
00062 #define HIGH_PRECISION 1
00063 #endif
00064
00065 #if HIGH_PRECISION
00066 typedef double Float;
00067 #else
00068 typedef float Float;
00069 #endif
00070
00071
00072
00073
00074 #ifndef DBL_MIN
00075 #define DBL_MIN std::numeric_limits<double>::min() // 2.2250738585072014e-308
00076 #endif
00077
00078 #ifndef DBL_DIG
00079 #define DBL_DIG std::numeric_limits<double>::digits10 // 15
00080 #endif
00081
00082 #ifndef DBL_MAX
00083 #define DBL_MAX std::numeric_limits<double>::max() // 1.7976931348623157e+308
00084 #endif
00085
00086 #ifndef DBL_EPSILON
00087 #define DBL_EPSILON std::numeric_limits<double>::epsilon()
00088 #endif // 2.2204460492503131e-16
00089
00090 #ifndef FLT_MIN
00091 #define FLT_MIN std::numeric_limits<float>::min() // 1.17549435e-38F
00092 #endif
00093
00094 #ifndef FLT_DIG
00095 #define FLT_DIG std::numeric_limits<float>::digits10 // 6
00096 #endif
00097
00098 #ifndef FLT_MAX
00099 #define FLT_MAX std::numeric_limits<float>::max() // 3.40282347e+38F
00100 #endif
00101
00102 #ifndef FLT_EPSILON
00103 #define FLT_EPSILON std::numeric_limits<float>::epsilon()
00104 #endif // 1.192092896e-07F
00105
00106 #ifndef MAXFLOAT
00107 #define MAXFLOAT std::numeric_limits<float>::max() // 3.40282347e+38F
00108 #endif
00109
00110 #ifndef INT_MAX
00111 #define INT_MAX std::numeric_limits<int>::max() // 2147483647
00112 #endif
00113
00114 #ifndef INT_MIN
00115 #define INT_MIN std::numeric_limits<int>::min() // -2147483648
00116 #endif
00117
00118
00119
00120 template <class T>
00121 inline void G4SwapPtr(T*& a, T*& b)
00122 {
00123 T* tmp= a;
00124 a = b;
00125 b = tmp;
00126 }
00127
00128 template <class T>
00129 inline void G4SwapObj(T* a, T* b)
00130 {
00131 T tmp= *a;
00132 *a = *b;
00133 *b = tmp;
00134 }
00135
00136
00137
00138 #ifndef G4_SQR_DEFINED
00139 #define G4_SQR_DEFINED
00140 #ifdef sqr
00141 #undef sqr
00142 #endif
00143
00144 template <class T>
00145 inline T sqr(const T& x)
00146 {
00147 return x*x;
00148 }
00149 #endif
00150
00151 #ifdef G4_ABS_DEFINED
00152 #ifdef abs
00153 #undef abs
00154 #endif
00155
00156 template <class T>
00157 inline T std::abs(const T& a)
00158 {
00159 return a < 0 ? -a : a;
00160 }
00161 #endif
00162
00163 inline int G4lrint(double ad)
00164 {
00165 return (ad>0) ? static_cast<int>(ad+.5) : static_cast<int>(ad-.5);
00166 }
00167
00168 inline int G4lint(double ad)
00169 {
00170 return (ad>0) ? static_cast<int>(ad) : static_cast<int>(ad-1.);
00171 }
00172
00173 inline int G4rint(double ad)
00174 {
00175 return (ad>0) ? static_cast<int>(ad+1) : static_cast<int>(ad);
00176 }
00177
00178 #endif // templates_h