aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authormiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-03-30 13:18:10 +0000
committermiguel <miguel@89daf98e-ef62-4674-b946-b8ff9de2216c>2000-03-30 13:18:10 +0000
commit1b675444b0f3b1b478db0e4143fdcbbdba96d396 (patch)
treee1d60943e1349c7571484a2daccdb0268369c57f /schedule.ccl
parent411593e6584617b8e9e1e709858ca58a4cefa514 (diff)
Minor change.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinder/trunk@56 89daf98e-ef62-4674-b946-b8ff9de2216c
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl16
1 files changed, 9 insertions, 7 deletions
diff --git a/schedule.ccl b/schedule.ccl
index c638060..0d7018c 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -11,24 +11,26 @@ schedule AHFinder_SetSym at CCTK_BASEGRID
} "Set symmetries for AHFinder grid functions"
-if (ahf_active && (ahf_persists || ahf_mask || ahf_weakmask))
+if (ahf_active && CCTK_Equals(ahf_mask,"off"))
{
- STORAGE: ahfindergrid,ahfmask
-
schedule ahfinder at CCTK_POSTSTEP
{
LANG: Fortran
- STORAGE: ahfgradient,ahfinder_gauss,find3grid
- } "Call apparent horizon finder with persisting grid"
+ STORAGE:ahfgradient,ahfinder_gauss,find3grid,ahfindergrid,ahfmask
+ } "Call apparent horizon finder"
}
else if (ahf_active)
{
+ STORAGE: ahfindergrid,ahfmask
+
schedule ahfinder at CCTK_POSTSTEP
{
LANG: Fortran
- STORAGE:ahfgradient,ahfinder_gauss,find3grid,ahfindergrid,ahfmask
- } "Call apparent horizon finder"
+ STORAGE: ahfgradient,ahfinder_gauss,find3grid
+ } "Call apparent horizon finder with persisting grid"
}
+
+