aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 0ac619c2a23815836b8f7df90906316cf37bae00 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Parameter definitions for thorn IOHDF5

#############################################################################
### declare IOHDF5 parameters
#############################################################################
private:

########################
# How often to do output
########################
INT out_every "How often to do IOHDF5 output, overrides IO::out_every" STEERABLE = ALWAYS
{
  -1:* :: "Values <= 0 disable IOHDF5 output"
} -1
INT outHDF5_every "How often to do IOHDF5 output, overrides IO::out_every" STEERABLE = ALWAYS
{
  -1:* :: "Values <= 0 disable IOHDF5 output"
} -1

####################
# Output directories
####################
STRING outdir "Name of IOHDF5 output directory, overrides IO::outdir"
{
  .* :: A regex which matches everything
} "."
STRING outdir_HDF5 "DEPRICATED: Name of IOHDF5 output directory, overrides IO::outdir"
{
  .* :: A regex which matches everything
} "."


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


#########################
# Checkpointing requested
#########################
BOOLEAN checkpoint "Do checkpointing with HDF5" STEERABLE = ALWAYS
{
} "no"
BOOLEAN checkpoint_next "Checkpoint at next iteration" STEERABLE = ALWAYS
{
} "no"


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

####################
# Output directories
####################
# FIXME: need USES AS
#USES STRING outdir 


########################
# How often to do output
########################
# FIXME: need USES AS
#USES INT out_every 


################
# various things
################
USES BOOLEAN verbose 
USES BOOLEAN newverbose 
USES BOOLEAN print_timing_info 
USES BOOLEAN out3D_parameters 
USES KEYWORD out_fileinfo 

#######################
# Specific to 3D output
#######################
USES KEYWORD out3D_mode 
USES INT out3D_procs 
USES BOOLEAN out3D_septimefiles 
USES BOOLEAN out3D_unchunked 

##############################################
# Downsampling parameters based on IOUTIL
##############################################
USES INT out3D_downsample_x 
USES INT out3D_downsample_y 
USES INT out3D_downsample_z 

###################################
# Checkpointing/recovery parameters
###################################
USES BOOLEAN checkpoint_ID 
USES BOOLEAN checkpoint_keep_all 
USES KEYWORD recover 
USES BOOLEAN recover_and_remove 
USES INT checkpoint_every 
USES BOOLEAN checkpoint_on_terminate 
USES INT checkpoint_keep 
USES STRING checkpoint_file 
USES STRING checkpoint_ID_file 
USES STRING recover_file 
USES STRING checkpoint_dir 
USES STRING recovery_dir