constants.h
Go to the documentation of this file.00001
00015 #ifndef DLR_COMMON_CONSTANTS_H
00016 #define DLR_COMMON_CONSTANTS_H
00017
00018 namespace dlr {
00019
00020 namespace common {
00021
00022 namespace constants {
00023
00024
00025 const double e = 2.7182818284590451;
00026 const double pi = 3.141592653589793238;
00027
00028
00029 const double avogadro = 6.02214179E23;
00030
00031
00032 const double degreesPerRadian = 180.0 / pi;
00033 const double radiansPerDegree = pi / 180.0;
00034
00035 }
00036
00037 }
00038
00039 }
00040
00041 #endif