aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2002-03-05 10:43:04 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2002-03-05 10:43:04 +0000
commit158f087573b84e501cc55ec313a8d60191faa468 (patch)
tree1685f5e62b40d9f18d8e0dafc6ea1042c202c6f9 /param.ccl
parentbf800e75d5e7859110cebe50cc8431c43bbafec4 (diff)
Turned 'IO::out3D_parameters' into a keyword parameter. Now you can save all
parameters in a 3D output file, or only those which have been set before, or none at all. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@151 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl8
1 files changed, 6 insertions, 2 deletions
diff --git a/param.ccl b/param.ccl
index 51d747f..dfd4c48 100644
--- a/param.ccl
+++ b/param.ccl
@@ -69,9 +69,13 @@ BOOLEAN out3D_septimefiles "Write one file per time slice, as opposed to all dat
BOOLEAN out3D_unchunked "Don't write data in chunks. This parameter is ignored for single-processor runs where output is always done in unchunked mode."
{
} "no"
-BOOLEAN out3D_parameters "Write parameters to 3D output files ?"
+KEYWORD out3D_parameters "Save current parameter settings in 3D output files ?"
{
-} "yes"
+ "all" :: "save all parameter settings"
+ "only set" :: "only save parameters which have been set before"
+ "yes" :: "synonym for \"only set\" (DEPRICATED)"
+ "no" :: "don't save parameter settings"
+} "only set"
##############################################