aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2001-03-26 20:45:34 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2001-03-26 20:45:34 +0000
commitecf1d7b8fb12b582d84bf44c575e4982c9733582 (patch)
tree5fd4f0161c9ce425933e3e681f1ba829a8d6608a /param.ccl
parentba32caf3a74ad1dae558219ed25807d1dfd022ab (diff)
Added new parameter KEYWORD out_fileinfo "Add some useful file information to output files ?"
{ "none" :: "no file information" "creation date" :: "add creation date" "parameter filename" :: "add parameter filename" "all" :: "add all available file information" } "all" Removed parameters which aren't used anywhere at all (eg. chunking for 1D output etc). git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@114 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl67
1 files changed, 9 insertions, 58 deletions
diff --git a/param.ccl b/param.ccl
index a7a7c54..63e130d 100644
--- a/param.ccl
+++ b/param.ccl
@@ -29,30 +29,19 @@ INT out_every "How often to do IO output" STEERABLE = ALWAYS
BOOLEAN verbose "Give extended screen output in IO?" STEERABLE = ALWAYS
{
} "no"
-BOOLEAN out3D_datestamp "Write date as attribute to IO 3D output file?"
-{
-} "yes"
-BOOLEAN out3D_parameters "Write parameters to IO 3D output file?"
-{
-} "yes"
-BOOLEAN out2D_datestamp "Write date as attribute to IO 2D output file?"
-{
-} "yes"
-BOOLEAN out2D_parameters "Write parameters to IO 2D output file?"
-{
-} "yes"
-BOOLEAN out1D_datestamp "Write date as attribute to IO 1D output file?"
-{
-} "yes"
-BOOLEAN out1D_parameters "Write parameters to IO 1D output file?"
-{
-} "yes"
BOOLEAN print_timing_info "Print timing information on I/O operations."
{
} "no"
BOOLEAN new_filename_scheme "Use the new filename scheme for output files ?"
{
} "no"
+KEYWORD out_fileinfo "Add some useful file information to output files ?"
+{
+ "none" :: "no file information"
+ "creation date" :: "add creation date"
+ "parameter filename" :: "add parameter filename"
+ "all" :: "add all available file information"
+} "all"
#######################
# Specific to 3D output
@@ -74,48 +63,10 @@ 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"
-
-#######################
-# Specific to 2D output
-#######################
-KEYWORD out2D_mode "Which mode for 2D IO"
+BOOLEAN out3D_parameters "Write parameters to 3D output files ?"
{
- "proc" :: "every processor writes its share of data into a separate file"
- "np" :: "data is collected and written by every N'th processor into a separate file, where N is specified by the parameter out3D_procs"
- "onefile" :: "all output is written into a single file by processor 0"
-} "proc"
-
-INT out2D_procs "Do IO on every N processors."
-{
- 1:* :: "Must be a positive integer"
-} 8
-BOOLEAN out2D_septimefiles "Write one file per time slice, as opposed to all data in one file"
-{
-} "no"
-BOOLEAN out2D_unchunked "Don't write data in chunks. This parameter is ignored for single-processor runs where output is always done in unchunked mode."
-{
-} "no"
-
-#######################
-# Specific to 1D output
-#######################
-KEYWORD out1D_mode "Which mode for 1D IO"
-{
- "proc" :: "every processor writes its share of data into a separate file"
- "np" :: "data is collected and written by every N'th processor into a separate file, where N is specified by the parameter out3D_procs"
- "onefile" :: "all output is written into a single file by processor 0"
-} "proc"
+} "yes"
-INT out1D_procs "Do IO on every N processors."
-{
- 1:* :: "Must be a positive integer"
-} 8
-BOOLEAN out1D_septimefiles "Write one file per time slice, as opposed to all data in one file"
-{
-} "no"
-BOOLEAN out1D_unchunked "Don't write data in chunks. This parameter is ignored for single-processor runs where output is always done in unchunked mode."
-{
-} "no"
##############################################
# Downsampling parameters (only for 3D output)