summaryrefslogtreecommitdiff
path: root/ext/dsent/util/Constants.h
blob: 4447e6991da66e3e5390f1d57176553837f03448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __DSENT_UTIL_CONSTANTS_H__
#define __DSENT_UTIL_CONSTANTS_H__

namespace DSENT
{
    class Constants
    {
        public:
            // Physical constants
            static const double pi;
            static const double k;
            static const double c;
            static const double q;
            static const double e0;
            static const double es;
    };

} // namespace DSENT

#endif // __DSENT_UTIL_CONSTANTS_H__