gem5/ext/dsent/util/Constants.h
Nilay Vaish e8ed7b1d1b ext: add the source code for DSENT
This patch adds a tool called DSENT to the ext/ directory.  DSENT
is a tool that models power and area for on-chip networks.  The next
patch adds a script for using the tool.
2014-10-11 15:02:23 -05:00

22 lines
446 B
C++

#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__