aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-27 14:02:53 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-07-27 14:02:53 +0000
commitb6a5c035ba5870ea3d2a1bd8b88e5f644b905f9e (patch)
tree9e81fbd1387ccc674c39ff0367a3de18ba9153f4 /schedule.ccl
parentdc62954d5bd7e17a5b032d85b8a225c969183c2e (diff)
switch mask processing from being done at the tail of
AHFinderDirect_find_horizons() (which is scheduled with options:GLOBAL) into a separately scheduled routine, so we can schedle this without options:GLOBAL -- we want to set the mask on each refined subgrid! git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1149 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl9
1 files changed, 9 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 41e54ec..0af9e2d 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -16,6 +16,15 @@ if (find_AHs != 0)
} "find apparent horizon(s) after this time step"
}
+if ((find_AHs != 0) && (set_mask != 0))
+ {
+ schedule AHFinderDirect_do_masks at CCTK_POSTSTEP \
+ after AHFinderDirect_find_horizons
+ {
+ lang: C
+ } "set mask(s) based on apparent horizon position(s)"
+ }
+
########################################
##