aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@80bd93c7-81bc-453a-9e3f-619c0b4f6fe4>2002-05-28 21:25:12 +0000
committertradke <tradke@80bd93c7-81bc-453a-9e3f-619c0b4f6fe4>2002-05-28 21:25:12 +0000
commitf9796b1808a00b4e020b4ac6dc1f8ebdb8dd21ef (patch)
treebd880a6ac253b8dd675e9dd5693eacd5eb6d3aed
parentfebf420e3c2d2d3e7e83153adc7f245d200b01e2 (diff)
Like in the cGH structure, the lsh[] argument in ADMAnalysis_CartToSphere() and
ADMAnalysis_Trace() must be of type 'int *'. This lets the code compile now on the T3E. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/ADMAnalysis/trunk@9 80bd93c7-81bc-453a-9e3f-619c0b4f6fe4
-rw-r--r--src/ADMAnalysis.h4
-rw-r--r--src/CartToSphere.c2
-rw-r--r--src/Trace.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ADMAnalysis.h b/src/ADMAnalysis.h
index d11aeb7..ed3aee5 100644
--- a/src/ADMAnalysis.h
+++ b/src/ADMAnalysis.h
@@ -16,7 +16,7 @@ extern "C"
{
#endif
-void ADMAnalysis_CartToSphere(const CCTK_INT *lsh,
+void ADMAnalysis_CartToSphere(const int *lsh,
int r2norm,
const CCTK_REAL *x,
const CCTK_REAL *y,
@@ -35,7 +35,7 @@ void ADMAnalysis_CartToSphere(const CCTK_INT *lsh,
CCTK_REAL *sphere_qp,
CCTK_REAL *sphere_pp);
-void ADMAnalysis_Trace(const CCTK_INT *lsh,
+void ADMAnalysis_Trace(const int *lsh,
const CCTK_REAL *g11,
const CCTK_REAL *g12,
const CCTK_REAL *g13,
diff --git a/src/CartToSphere.c b/src/CartToSphere.c
index e5e674f..8f3185a 100644
--- a/src/CartToSphere.c
+++ b/src/CartToSphere.c
@@ -135,7 +135,7 @@ CCTK_FILEVERSION(CactusEinstein_ADMAnalysis_CartToSphere_c)
@vio in
@@*/
-void ADMAnalysis_CartToSphere(const CCTK_INT *lsh,
+void ADMAnalysis_CartToSphere(const int *lsh,
int project_rdtheta_rdphi,
const CCTK_REAL *x,
const CCTK_REAL *y,
diff --git a/src/Trace.c b/src/Trace.c
index 241900b..0808ae3 100644
--- a/src/Trace.c
+++ b/src/Trace.c
@@ -117,7 +117,7 @@ CCTK_FILEVERSION(CactusEinstein_ADMAnalysis_Trace_c)
@endvar
@@*/
-void ADMAnalysis_Trace(const CCTK_INT *lsh,
+void ADMAnalysis_Trace(const int *lsh,
const CCTK_REAL *g11,
const CCTK_REAL *g12,
const CCTK_REAL *g13,