summaryrefslogtreecommitdiff
path: root/src/param.ccl
blob: f205f3171fcca5d2bf08a31edb511d0af2ab8c66 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Parameter definitions for flesh
# $Header$

 
private:

STRING cctk_run_title "Description of this simulation"
{
  ".*" :: "Any string"
} ""

KEYWORD cctk_timer_output  "Provide output from timers"
{
 "off"  :: "No timer output"
 "full" :: "Detailed timer output"
} "off"

BOOLEAN cctk_full_warnings "Give detailed information for each warning statement"
{
} "yes"

BOOLEAN cctk_strong_param_check "Die on parameter errors in CCTK_PARAMCHECK"
{
} "yes"

BOOLEAN cctk_show_schedule "Print the scheduling tree to standard output"
{
} "yes"

BOOLEAN cctk_show_banners "Show any registered banners for the different thorns"
{
} "yes"
 
BOOLEAN cctk_brief_output "Give only brief output"
{
} "no"

BOOLEAN manual_cache_setup "Set the cache size manually"
{
} "no"

INT manual_cache_size "The size to set the cache to if not done automatically (bytes)"
{
  0: :: "Any whole number"
} 0

INT manual_cacheline_bytes "The size of a cacheline if not set automatically (bytes)"
{
  0: :: "Any whole number"
} 0

restricted:

REAL cctk_initial_time "Initial time for evolution"
{
 : :: "Anything"
} 0.0
 
REAL cctk_final_time "Final time for evolution"
{
 : :: "Anything"
} -1.0
 
INT cctk_itlast "Final iteration number" STEERABLE = ALWAYS
{
: :: "Any integer"
} 10