aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 3907175fe465893efc1e762ba52a66980f3c66e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Schedule definitions for thorn AHFinderDirect
# $Header$

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"

if (find_AHs_at_postinitial != 0)
	{
	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"
	}

########################################

##
## uncomment this if you want to use the test driver
##	src/util/test_patch_system.cc
##
##schedule test_patch_system at CCTK_POSTINITIAL
##{
##LANG: C
##OPTIONS: global
##} "test driver to verify that src/util/ and src/jtutil/ code works properly"