Constants.h revision 10447:a465576671d4
1#ifndef __DSENT_UTIL_CONSTANTS_H__
2#define __DSENT_UTIL_CONSTANTS_H__
3
4namespace DSENT
5{
6    class Constants
7    {
8        public:
9            // Physical constants
10            static const double pi;
11            static const double k;
12            static const double c;
13            static const double q;
14            static const double e0;
15            static const double es;
16    };
17
18} // namespace DSENT
19
20#endif // __DSENT_UTIL_CONSTANTS_H__
21
22