aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorgoodale <goodale@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2004-05-17 12:28:57 +0000
committergoodale <goodale@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2004-05-17 12:28:57 +0000
commit200002129a78978371969bccc78501172eaf6d62 (patch)
tree4e9287f4d9b3317c04c8f267927a55e583f96534 /src/Startup.c
parentf041f448473140a18c9854b28a552c331c263348 (diff)
Untabified. Please try to adhere to the Cactus coding guidelines when
modifying or adding files. git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@75 57bc7290-fb3d-4efd-a9b1-28e84cce6043
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");
}
-
-
-
-
-