aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-17 12:06:49 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-17 12:06:49 +0000
commit8d274d170dde9d858e0a13a43762d3976ea4e3b1 (patch)
treed394b0725cf7af6883c57b8bde59f0ffef479d6c /schedule.ccl
parent498e26dd4ee819db7a0c4930e73624af936b7d47 (diff)
add 1st draft of support for setting an excision mask
-- alas this doesn't work properly (yet) for multiple processors git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@975 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl42
1 files changed, 23 insertions, 19 deletions
diff --git a/schedule.ccl b/schedule.ccl
index a95879d..3907175 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,32 +1,36 @@
# 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
+if (set_horizon_mask != 0)
+ {
+ if (CCTK_Equals(mask_type, "old-style (CCTK_REAL)"))
+ {
+ STORAGE: ahfmask
+ }
+ }
schedule AHFinderDirect_setup at CCTK_BASEGRID after SpatialCoordinates
-{
-lang: C
-options: global
-} "setup data structures"
+ {
+ lang: C
+ options: global
+ } "setup data structures"
if (find_AHs_at_postinitial != 0)
- {
- schedule AHFinderDirect_find_horizons at CCTK_POSTINITIAL
{
- lang: C
- options: global
- } "find apparent horizon(s) in initial data"
- }
+ schedule AHFinderDirect_find_horizons at CCTK_POSTINITIAL
+ {
+ lang: C
+ options: global
+ } "find apparent horizon(s) in initial data"
+ }
if (find_AHs_at_poststep != 0)
- {
- schedule AHFinderDirect_find_horizons at CCTK_POSTSTEP
{
- lang: C
- options: global
- } "find apparent horizon(s) after this time step"
- }
+ schedule AHFinderDirect_find_horizons at CCTK_POSTSTEP
+ {
+ lang: C
+ options: global
+ } "find apparent horizon(s) after this time step"
+ }
########################################