aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)