aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 17bd5cf8fd67b348908072cdc6bc3825f96ed904 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Parameter definitions for thorn StreamedHDF5
# $Header$

#############################################################################
### declare StreamedHDF5 parameters
#############################################################################
private:

########################
# How often to do output
########################
INT outHDF5_every "How often to do HDF5 streaming, overrides IO::out_every" STEERABLE = ALWAYS
{
  -1:* ::
} -1

KEYWORD h5verbose "Verbosity level"
{
  "yes"  :: "information output"
  "debug":: "debugging output"
  "no"   :: "silent"
} "yes"

#####################
# Variables to output
#####################
STRING out_vars "Variables to stream in HDF5 file format" STEERABLE = ALWAYS
{
  .* :: A regex which matches everything
} ""

STRING testvars "Variables to stream in HDF5 file format" STEERABLE = ALWAYS
{
  .* :: "format"
} ""

INT port "Port to stream the HDF5 file out"
{
  1000:16000 :: "Valid ranges are above 1000, ports below that value would require root access"
} 8000

#####################
# Variables to output
#####################

STRING origin "Default origin"
{
  .* :: "Comma separated list of positive integer values"
} "0,0,0"
STRING downsampling "Default downsampling"
{
  .* :: "Comma separated list of positive integer values"
} "1,1,1"
STRING length "Default length of the hyperslab to stream"
{
  .* :: "Comma separated list of integer values"
} "-1,-1,-1"
STRING direction "Default direction of hyperslab to stream"
{
  .* :: "Comma separated list of positive integer values"
} "0,1,2"

CCTK_INT slabdim "default dimension of slab"
{
 1:3 :: "dimension of slab (1,2,3)"
} 3


#############################################################################
### import IOUtil parameters
#############################################################################
shares: IO

########################
# How often to do output
########################
USES INT out_every ""
{
  : ::
}

################
# various things
################
USES BOOLEAN verbose ""
{
 : ::  
}