aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-12 11:20:27 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-12 11:20:27 +0000
commitac0f4eaaa90226228ea3b69480abfdaed62d4a56 (patch)
tree9ad613fc863f7a2a04ec5450a8ed4ea9c4419564 /param.ccl
parent8fe08df8fe79058dfe9b10d0dde58f5c35960b2f (diff)
Set the steerable flag for almost all IO parameters to either RECOVER or ALWAYS.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@54 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl32
1 files changed, 15 insertions, 17 deletions
diff --git a/param.ccl b/param.ccl
index a592c98..b6ed4e4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -18,7 +18,7 @@ restricted:
####################
# Output directories
####################
-STRING outdir "Name of IO output directory"
+STRING outdir "Name of IO output directory" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "."
@@ -34,7 +34,7 @@ INT out_every "How often to do IO output" STEERABLE = ALWAYS
################
# various things
################
-BOOLEAN verbose "Give extended screen output in IO?"
+BOOLEAN verbose "Give extended screen output in IO?" STEERABLE = ALWAYS
{
} "no"
BOOLEAN out3D_datestamp "Write date as attribute to IO 3D output file?"
@@ -72,15 +72,15 @@ BOOLEAN out3D_unchunked "Don't write data in chunks. This parameter is ignored f
##############################################
# Downsampling parameters (only for 3D output)
##############################################
-INT out3D_downsample_x "Factor by which to downsample output in x direction. Point (0,0,0) is always included."
+INT out3D_downsample_x "Factor by which to downsample output in x direction. Point (0,0,0) is always included." STEERABLE = ALWAYS
{
1:* :: "Must be a positive integer"
} 1
-INT out3D_downsample_y "Factor by which to downsample output in y direction. Point (0,0,0) is always included."
+INT out3D_downsample_y "Factor by which to downsample output in y direction. Point (0,0,0) is always included." STEERABLE = ALWAYS
{
1:* :: "Must be a positive integer"
} 1
-INT out3D_downsample_z "Factor by which to downsample output in z direction. Point (0,0,0) is always included."
+INT out3D_downsample_z "Factor by which to downsample output in z direction. Point (0,0,0) is always included." STEERABLE = ALWAYS
{
1:* :: "Must be a positive integer"
} 1
@@ -92,42 +92,40 @@ BOOLEAN out3D_single "Output 3D data in single precision ? This parameter is ign
###################################
# Checkpointing/recovery parameters
###################################
-BOOLEAN checkpoint_ID "Checkpoint initial data ?"
+BOOLEAN checkpoint_ID "Checkpoint initial data ?" STEERABLE = RECOVER
{
} "no"
-BOOLEAN checkpoint_keep_all "Keep all checkpoint files ?"
+BOOLEAN checkpoint_keep_all "Keep all checkpoint files ?" STEERABLE = RECOVER
{
} "no"
-BOOLEAN recover "Recover from a checkpoint file ?"
+BOOLEAN recover "Recover from a checkpoint file ?" STEERABLE = RECOVER
{
} "no"
-INT checkpoint_every "Checkpoint every x iterations"
+INT checkpoint_every "Checkpoint every x iterations" STEERABLE = RECOVER
{
-1:* :: "negative values disable checkpointing"
} -1
-INT checkpoint_keep "How many checkpoint files to keep"
+INT checkpoint_keep "How many checkpoint files to keep" STEERABLE = RECOVER
{
1:* :: "1 overwrites the latest checkpoint file"
} 1
-STRING checkpoint_file "File name for regular checkpoint"
+STRING checkpoint_file "File name for regular checkpoint" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "checkpoint"
-STRING checkpoint_ID_file "File name for initial data checkpoint"
+STRING checkpoint_ID_file "File name for initial data checkpoint" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "checkpointID"
-STRING recover_file "File name of recovery file"
+STRING recover_file "File name of recovery file" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "checkpoint"
-STRING checkpoint_dir "Output directory for checkpoint files"
+STRING checkpoint_dir "Output directory for checkpoint files" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "."
-STRING recovery_dir "Directory to look for the recovery file"
+STRING recovery_dir "Directory to look for the recovery file" STEERABLE = RECOVER
{
.* :: A regex which matches everything
} "."
-
-