aboutsummaryrefslogtreecommitdiff
path: root/src/driver/find_horizons.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/find_horizons.cc')
-rw-r--r--src/driver/find_horizons.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/driver/find_horizons.cc b/src/driver/find_horizons.cc
index 2a0cd39..1d457cf 100644
--- a/src/driver/find_horizons.cc
+++ b/src/driver/find_horizons.cc
@@ -124,11 +124,11 @@ else CCTK_VWarn(FATAL_ERROR, __LINE__, __FILE__, CCTK_THORNSTRING,
IO_info.time_iteration = cctk_iteration;
IO_info.time = cctk_time;
IO_info.output_h
- = (IO_info.how_often_to_output_h > 0)
- && ((IO_info.time_iteration % IO_info.how_often_to_output_h) == 0);
+ = (IO_info.output_h_every > 0)
+ && ((IO_info.time_iteration % IO_info.output_h_every) == 0);
IO_info.output_Theta
- = (IO_info.how_often_to_output_Theta > 0)
- && ((IO_info.time_iteration % IO_info.how_often_to_output_Theta) == 0);
+ = (IO_info.output_Theta_every > 0)
+ && ((IO_info.time_iteration % IO_info.output_Theta_every) == 0);
// set initial guess for any (genuine) horizons that need it,
// i.e. for any (genuine) horizons where we didn't find the horizon previously