00001
00015 #ifndef LATGRBALERT_CONSTANTS_H
00016 #define LATGRBALERT_CONSTANTS_H
00017
00018 #ifndef WIN32
00019 #include <math.h>
00020 #endif
00021
00022
00023
00024 namespace lattrigcst
00025 {
00026 const double ratebck = 4.07;
00027 const double degInPi = 180.0 / M_PI;
00028 const double twosigdist = 34./degInPi;
00029
00030
00031 const long nrange = 80L;
00032 const long nmove = nrange/4;
00033 }
00034
00035
00036
00037 namespace lattrigtypes
00038 {
00039 typedef std::vector<std::vector<double> >::const_iterator DoubleVecConstIter;
00040 typedef std::vector<double>::const_iterator DoubleConstIter;
00041 typedef std::vector<double>::iterator DoubleIter;
00042 typedef std::vector<double>::const_reverse_iterator DoubleConstRevIter;
00043 }
00044
00045 #endif
00046
00047