aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@6a3ddf76-46e1-4315-99d9-bc56cac1ef84>2003-05-06 11:58:32 +0000
committerjthorn <jthorn@6a3ddf76-46e1-4315-99d9-bc56cac1ef84>2003-05-06 11:58:32 +0000
commitf12ea4a71f5cfa42490d00d11bf2cff85740a57b (patch)
tree0a4a31f116cc59382f4743c524eb7e4fac140315
parentb87239199b05fdf7d4fbd19919b5794d0d21da70 (diff)
fix grdoc comment for iso(),
add const qualifier for eval_bh_psi() git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@130 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
-rw-r--r--src/Misner_points.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Misner_points.c b/src/Misner_points.c
index 7aa0b2e..a88dc43 100644
--- a/src/Misner_points.c
+++ b/src/Misner_points.c
@@ -71,7 +71,7 @@ static CCTK_REAL csch(CCTK_REAL theta);
static CCTK_REAL coth(CCTK_REAL theta);
static void iso(struct bhole *a1, struct bhole *a2, struct bhole *a3);
static void fill_iso(struct bhole *b, int n);
-static CCTK_REAL eval_bh_psi(struct bhole *b,
+static CCTK_REAL eval_bh_psi(const struct bhole *b,
CCTK_REAL x, CCTK_REAL y, CCTK_REAL z);
/******************************************************************************/
@@ -162,13 +162,13 @@ static CCTK_REAL coth(CCTK_REAL theta) {
/******************************************************************************/
/*@@
- @routine fill_iso
+ @routine iso
@date
@author Steve Brandt
@desc
Isometrize black hole a1 through hole a2
@enddesc
- @calls fill_iso
+ @calls iso
@history
@endhistory
@@ -241,7 +241,7 @@ static void fill_iso(struct bhole *b, int n)
@endhistory
@@*/
-static CCTK_REAL eval_bh_psi(struct bhole *b,
+static CCTK_REAL eval_bh_psi(const struct bhole *b,
CCTK_REAL x, CCTK_REAL y, CCTK_REAL z)
{
int i;