aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>2002-05-06 09:23:48 +0000
committertradke <tradke@38c3d835-c875-442e-b0fe-21c19ce1d001>2002-05-06 09:23:48 +0000
commit03a92f415aea5cdd2ac04f749bcc07c86c1b6869 (patch)
tree2112331cf052c630c4e3f2cc370d0215335ca2cf /param.ccl
parent57daa72811142a5f0377bfd2cdba07eebb73e977 (diff)
Parameter names changes as announced in today's mail to users@cactuscode.org.
You must also update thorn IOUtil now. This thorn will be moved from BetaThorns to CactusPUGHIO now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOPanda/trunk@32 38c3d835-c875-442e-b0fe-21c19ce1d001
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl45
1 files changed, 14 insertions, 31 deletions
diff --git a/param.ccl b/param.ccl
index baf413b..a6931a6 100644
--- a/param.ccl
+++ b/param.ccl
@@ -1,5 +1,5 @@
# Parameter definitions for thorn IOPanda
-
+# $Header$
#############################################################################
### declare IOPanda parameters
@@ -13,17 +13,20 @@ private:
INT out_every "How often to do IOPanda output, overrides IO::out_every" \
STEERABLE = ALWAYS
{
- -1:* :: "Values <= 0 disable IOPanda output"
+ 1:* :: "Every so many iterations"
+ 0: :: "Disable IOPanda output"
+ -1: :: "Default to IO::out_every"
} -1
####################
# Output directories
####################
-STRING outdir "Name of IOPanda output directory, overrides IO::outdir"
+STRING out_dir "Name of IOPanda output directory, overrides IO::out_dir"
{
- .* :: A regex which matces everything
-} "."
+ ".+" :: "A valid directory name"
+ "^$" :: "An empty string to choose the default from IO::out_dir"
+} ""
##########################
@@ -31,7 +34,8 @@ STRING outdir "Name of IOPanda output directory, overrides IO::outdir"
##########################
STRING out_vars "Variables to output in IOPanda file format" STEERABLE = ALWAYS
{
- .* :: A regex which matches everything
+ ".+" :: "Space-separated list of fully qualified variable/group names"
+ "^$" :: "An empty string to output nothing"
} ""
@@ -40,29 +44,8 @@ STRING out_vars "Variables to output in IOPanda file format" STEERABLE = ALWAYS
#############################################################################
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 KEYWORD newverbose
+# FIXME: want USES STRING out_dir AS default_out_dir
+# FIXME: want USES INT out_every AS default_out_every
+USES KEYWORD verbose
USES BOOLEAN out_fileinfo
-
-
-#######################
-# Specific to 3D output
-#######################
-USES KEYWORD out3D_mode
+USES KEYWORD out_mode