aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2002-04-30 14:11:34 +0000
committertradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2002-04-30 14:11:34 +0000
commit76d4e575a9901080e16d0558e9d65f7a1ec8fe22 (patch)
tree8c5e05f8136f6e4f73cc4071938e6488a13b671a /param.ccl
parent320e624c8ecef71d228b6b40326bed6f2afe1f68 (diff)
Changed the default for 'IOASCII::outdir?D' to be an empty string which then
causes IOASCII I/O methods to use 'IO::outdir'. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@111 94b1c47f-dcfd-45ef-a468-0854c0e9e350
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl18
1 files changed, 9 insertions, 9 deletions
diff --git a/param.ccl b/param.ccl
index 0805d5b..9d0f2c4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -8,22 +8,22 @@
private:
##########################
-# Directories to output to (overriden by outdir)
+# Directories to output to
##########################
-STRING outdir1D "Name of 1D ASCII output directory, overrides outdir"
+STRING outdir1D "Name of 1D ASCII output directory, overrides IO::outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
STRING outdir2D "Name of 2D ASCII output directory, overrides outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
-STRING outdir3D "Name of 3D ASCII output directory, overrides outdir"
+STRING outdir3D "Name of 3D ASCII output directory, overrides IO::outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
##########################