aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@8e189c6b-2ab8-4400-aa02-70a9cfce18b9>2014-03-13 03:01:46 +0000
committerrhaas <rhaas@8e189c6b-2ab8-4400-aa02-70a9cfce18b9>2014-03-13 03:01:46 +0000
commit3f6090970ad845ed1b783f8efee4a61b8f2f97cd (patch)
treefe9b6981e573ece2fab2e53f01dec72701c1fc70
parenta7310378c9b6df75b9f805c0410f6f9202379d15 (diff)
EOS_Omni: add comments and TODOs
From: Roland Haas <rhaas@tapir.caltech.edu> git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinEOS/EOS_Omni/trunk@98 8e189c6b-2ab8-4400-aa02-70a9cfce18b9
-rw-r--r--src/nuc_eos_cxx/nuc_eos.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nuc_eos_cxx/nuc_eos.hh b/src/nuc_eos_cxx/nuc_eos.hh
index 576290f..6483d88 100644
--- a/src/nuc_eos_cxx/nuc_eos.hh
+++ b/src/nuc_eos_cxx/nuc_eos.hh
@@ -3,6 +3,8 @@
#include "cctk.h"
+// TODO: remove hard coded constants
+// TODO: introduce defines for table index of variables
#define HAVEGR 1
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
@@ -70,7 +72,9 @@ namespace nuc_eos {
// 16 Abar
// 17 Zbar
// 18 Gamma
-
+ enum eos_var {i_logpress=0, i_logenergy, i_entropy, i_munu, i_cs2, i_dedt,
+ i_dpdrhoe, i_dpderho, i_muhat, i_mu_e, i_mu_p, i_mu_n, i_Xa,
+ i_Xh, i_Xn, i_Xp, i_Abar, i_Zbar, i_Gamma};
}
#endif // NUC_EOS_HH