aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorlanfer <lanfer@57bc7290-fb3d-4efd-a9b1-28e84cce6043>1999-11-04 13:10:03 +0000
committerlanfer <lanfer@57bc7290-fb3d-4efd-a9b1-28e84cce6043>1999-11-04 13:10:03 +0000
commit5d83fceb99edc8eb9b2c488e212d9e7c521f30c9 (patch)
treeae2210f3d54534e38062b61ed9321dd9f8451d2d /src/Startup.c
parent9a891f99d59d52b1a9df80568b80df2c834964f7 (diff)
more error checking
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@22 57bc7290-fb3d-4efd-a9b1-28e84cce6043
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Startup.c b/src/Startup.c
index fad462d..2b3d7d2 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -43,18 +43,18 @@ void Ell_RegisterBaseEqTypes(cGH *GH) {
err = Ell_CreateKey(CCTK_VARIABLE_STRING,"EllLinMetric::Bnd");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinConfMetric::Bnd::Robin::V0");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinConfMetric::Bnd::Robin::V1");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinConfMetric::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinConfMetric::Bnd::Robin::falloff");
err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinConfMetric::Bnd::Const::V0");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinMetric::Bnd::Robin::V0");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinMetric::Bnd::Robin::V1");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinMetric::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinMetric::Bnd::Robin::falloff");
err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinMetric::Bnd::Const::V0");
/* Register the variables needed to use these boundaries */
- err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinFlat::Bnd::Robin::V0");
- err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinFlat::Bnd::Robin::V1");
+ err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinFlat::Bnd::Robin::inf");
+ err = Ell_CreateKey(CCTK_VARIABLE_INT, "EllLinFlat::Bnd::Robin::falloff");
err = Ell_CreateKey(CCTK_VARIABLE_REAL, "EllLinFlat::Bnd::Const::V0");
}