diff options
Diffstat (limited to 'ext/dsent/util/Constants.h')
-rw-r--r-- | ext/dsent/util/Constants.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/dsent/util/Constants.h b/ext/dsent/util/Constants.h new file mode 100644 index 000000000..4447e6991 --- /dev/null +++ b/ext/dsent/util/Constants.h @@ -0,0 +1,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__ + |