aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-26 18:44:07 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-26 18:44:07 +0000
commit7c75fbd310c89d6a0577f0e567a1e20e9ab7a8b8 (patch)
treec0c40da0c20a8b9f0c848918a6e30bece09fc2bf
parent80179ea5d94fb0598160565c1fc4a81daf9c0028 (diff)
oops, forgot to turn storage on for the Cactus arrays!
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@861 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--schedule.ccl4
-rw-r--r--src/driver/find_horizons.cc6
2 files changed, 5 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 7d485d4..8fc6720 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,6 +1,10 @@
# Schedule definitions for thorn AHFinderDirect
# $Header$
+# these are small, so there's no harm in having storage for them always on
+STORAGE: BH_diagnostics__int
+STORAGE: BH_diagnostics__real
+
schedule AHFinderDirect_setup at CCTK_BASEGRID after SpatialCoordinates
{
lang: C
diff --git a/src/driver/find_horizons.cc b/src/driver/find_horizons.cc
index bf21f0d..446eae1 100644
--- a/src/driver/find_horizons.cc
+++ b/src/driver/find_horizons.cc
@@ -203,10 +203,8 @@ setup_Cactus_gridfn_data_ptrs(cctkGH, state.cgi);
ps, AH_info.Jac_ptr,
hn, state.N_horizons);
-#ifdef NOT_YET
// store found flag in Cactus array variable
AH_found[hn] = AH_info.AH_found;
-#endif
if (AH_info.AH_found)
then {
@@ -232,14 +230,12 @@ setup_Cactus_gridfn_data_ptrs(cctkGH, state.cgi);
double(BH_diagnostics.m_irreducible));
}
-#ifdef NOT_YET
// store BH diagnostics in Cactus array variables
centroid_x[hn] = BH_diagnostics.centroid_x;
centroid_y[hn] = BH_diagnostics.centroid_y;
centroid_z[hn] = BH_diagnostics.centroid_z;
area[hn] = BH_diagnostics.area;
m_irreducible[hn] = BH_diagnostics.m_irreducible;
-#endif
// output BH diagnostics?
if (IO_info.output_BH_diagnostics)
@@ -520,7 +516,7 @@ Jacobian& Jac = *Jac_ptr;
if (verbose_info.print_algorithm_highlights)
then CCTK_VInfo(CCTK_THORNSTRING,
- "searching for horizon #%d of %d",
+ "searching for horizon %d of %d",
hn, N_horizons);
if (timer_handle >= 0)