aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-01-27 07:49:39 +0000
committerallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2000-01-27 07:49:39 +0000
commit12657eface47289c2b96f0cc2784bff55fed46cc (patch)
tree2c8841add1688c217b04ede4545160ac7d55b021
parentb90e474717bbf96c56a029b18918cc37af7f1c48 (diff)
cctk_arguments -> cctk_Arguments
cctk_parameters -> cctk_Parameters git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@35 57bc7290-fb3d-4efd-a9b1-28e84cce6043
-rw-r--r--doc/ThornGuide.tex6
-rw-r--r--src/Ell_DBstructure.c2
-rw-r--r--src/Ell_Interface.c2
-rw-r--r--src/Ell_Register.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/ThornGuide.tex b/doc/ThornGuide.tex
index 322943d..bfa65df 100644
--- a/doc/ThornGuide.tex
+++ b/doc/ThornGuide.tex
@@ -325,7 +325,7 @@ need to have C wrapper function ``{\tt FastSOR\_wrapper}''.
\begin{verbatim}
#include ``cctk.h''
-#include ``cctk_parameters.h''
+#include ``cctk_Parameters.h''
#include ``cctk_FortranString.h''
#include ``StoreNamedData.h''
@@ -420,7 +420,7 @@ c We have no storage for M if they are of size one in each direction
\end{verbatim}
This Fortran solver receives the following arguments: the ``typical''
- CCTK\_ARGUMENTS (see \ref{sec:cctk_arguments}): {\tt \_CCTK\_FARGUMENTS},
+ CCTK\_ARGUMENTS (see \ref{sec:cctk_Arguments}): {\tt \_CCTK\_FARGUMENTS},
the {\em size} of the coefficient matrix: {\tt Mlinear\_lsh}, the coefficient
matrix {\tt Mlinear}, the variable to solve for: {\tt var}, and the two arrays with convergence information.
@@ -478,7 +478,7 @@ The routine below in {\tt Startup.c} performs the registration of our solver wra
Startup,c} we have:
\begin{verbatim}
#include ``cctk.h''
-#include ``cctk_parameters.h''
+#include ``cctk_Parameters.h''
void FastSOR_register(cGH *GH) {
diff --git a/src/Ell_DBstructure.c b/src/Ell_DBstructure.c
index ff6e6a7..1e75a94 100644
--- a/src/Ell_DBstructure.c
+++ b/src/Ell_DBstructure.c
@@ -4,7 +4,7 @@
#include <string.h>
#include "cctk.h"
-#include "cctk_parameters.h"
+#include "cctk_Parameters.h"
#include "cctk_WarnLevel.h"
#include "cctk_FortranString.h"
diff --git a/src/Ell_Interface.c b/src/Ell_Interface.c
index fa9771c..7989505 100644
--- a/src/Ell_Interface.c
+++ b/src/Ell_Interface.c
@@ -22,7 +22,7 @@
#include <string.h>
#include "cctk.h"
-#include "cctk_parameters.h"
+#include "cctk_Parameters.h"
#include "cctk_FortranString.h"
#include "StoreNamedData.h"
diff --git a/src/Ell_Register.c b/src/Ell_Register.c
index 1f0660a..400afd0 100644
--- a/src/Ell_Register.c
+++ b/src/Ell_Register.c
@@ -13,7 +13,7 @@
#include <string.h>
#include "cctk.h"
-#include "cctk_parameters.h"
+#include "cctk_Parameters.h"
#include "EllBase.h"