aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorlanfer <lanfer@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-08-01 19:07:21 +0000
committerlanfer <lanfer@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-08-01 19:07:21 +0000
commita2c0bac7166aa36b76b89a76c31adcadf762ce4c (patch)
tree0d87c424032f07f1f0906edf69cbf164be3aea0a /param.ccl
parentd520aad98922b042245d61a4f3d576b14c49c02b (diff)
parameter to specify the default hyperslab geometry, can be overridden on a per-variable bases
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@13 0888f3d4-9f52-45d2-93bc-d00801ff5e46
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl36
1 files changed, 36 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
index 8ce6399..e5f1b79 100644
--- a/param.ccl
+++ b/param.ccl
@@ -14,6 +14,11 @@ INT outHDF5_every "How often to do HDF5 streaming, overrides IO::out_every" STEE
-1:* ::
} -1
+KEYWORD h5verbose "Verbosity level"
+{
+ "yes" :: "information output"
+ "debug":: "debugging output"
+} "yes"
#####################
# Variables to output
@@ -23,12 +28,42 @@ 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" STEERABLE = ALWAYS
{
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)"
+} 1
+
#############################################################################
### import IOUtil parameters
@@ -48,4 +83,5 @@ USES INT out_every ""
################
USES BOOLEAN verbose ""
{
+ : ::
}