aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c33
1 files changed, 14 insertions, 19 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 732b236..a368a0b 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -59,47 +59,42 @@ void Ell_RegisterBaseEqTypes(cGH *GH)
err += Ell_RegisterEq(Ell_LinFlatRegistry, "Ell_LinFlat");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinFlat::Bnd");
+ "EllLinFlat::Bnd");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinConfMetric::Bnd");
+ "EllLinConfMetric::Bnd");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinMetric::Bnd");
+ "EllLinMetric::Bnd");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinFlat::Bnd::Robin");
+ "EllLinFlat::Bnd::Robin");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinConfMetric::Bnd::Robin");
+ "EllLinConfMetric::Bnd::Robin");
err += Ell_CreateKey(CCTK_VARIABLE_STRING,
- "EllLinMetric::Bnd::Robin");
+ "EllLinMetric::Bnd::Robin");
/* Register the variables needed to use these boundaries */
err += Ell_CreateKey(CCTK_VARIABLE_REAL,
- "EllLinConfMetric::Bnd::Robin::inf");
+ "EllLinConfMetric::Bnd::Robin::inf");
err += Ell_CreateKey(CCTK_VARIABLE_INT,
- "EllLinConfMetric::Bnd::Robin::falloff");
+ "EllLinConfMetric::Bnd::Robin::falloff");
err += Ell_CreateKey(CCTK_VARIABLE_REAL,
- "EllLinConfMetric::Bnd::Const::V0");
+ "EllLinConfMetric::Bnd::Const::V0");
/* Register the variables needed to use these boundaries */
err += Ell_CreateKey(CCTK_VARIABLE_REAL,
- "EllLinMetric::Bnd::Robin::inf");
+ "EllLinMetric::Bnd::Robin::inf");
err += Ell_CreateKey(CCTK_VARIABLE_INT,
- "EllLinMetric::Bnd::Robin::falloff");
+ "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::inf");
+ "EllLinFlat::Bnd::Robin::inf");
err += Ell_CreateKey(CCTK_VARIABLE_INT,
- "EllLinFlat::Bnd::Robin::falloff");
+ "EllLinFlat::Bnd::Robin::falloff");
err += Ell_CreateKey(CCTK_VARIABLE_REAL,
- "EllLinFlat::Bnd::Const::V0");
+ "EllLinFlat::Bnd::Const::V0");
if (err<0) CCTK_WARN(1,"Error registering the basic elliptic classes");
}
-
-
-
-
-