aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-30 22:46:00 +0000
committerallen <allen@ebee0441-1374-4afa-a3b5-247f3ba15b9a>1999-07-30 22:46:00 +0000
commit0d0f6983f1800c01c8553bc8e4be441342252b0b (patch)
treefea31440962f5a8d74c53b8f821804c919e8d415 /param.ccl
parentfa54b6d245abe8c84bb6e89ef30fd4f5cef66b29 (diff)
A lot of parameter name changes, especially for IO
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@27 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl42
1 files changed, 21 insertions, 21 deletions
diff --git a/param.ccl b/param.ccl
index 68c2859..5a1f139 100644
--- a/param.ccl
+++ b/param.ccl
@@ -10,11 +10,11 @@ private:
########################
# How often to do output
########################
-INT output2d_every "How often to do 2D output, overrides output_every"
+INT out2D_every "How often to do 2D output, overrides out_every"
{
-1:* ::
} -1
-INT output3d_every "How often to do 3D output, overrides output_every"
+INT out3D_every "How often to do 3D output, overrides out_every"
{
-1:* ::
} -1
@@ -23,10 +23,10 @@ INT output3d_every "How often to do 3D output, overrides output_every"
####################
# Output directories
####################
-STRING outdir2d "Name of IO 2D output directory, overrides outdir"
+STRING outdir2D "Name of IO 2D output directory, overrides outdir"
{
} "outdir"
-STRING outdir3d "Name of IO 3D output directory, overrides outdir"
+STRING outdir3D "Name of IO 3D output directory, overrides outdir"
{
} "outdir"
@@ -34,21 +34,21 @@ STRING outdir3d "Name of IO 3D output directory, overrides outdir"
##########################
# What variables to output
##########################
-STRING output2D "Variables to output in 2D FlexIO file format"
+STRING out2D_vars "Variables to output in 2D FlexIO file format"
{
:: "default is to output nothing"
} ""
-STRING output3D "Variables to output in 3D FlexIO file format"
+STRING out3D_vars "Variables to output in 3D FlexIO file format"
{
:: "default is to output nothing"
} ""
################
# Various things
################
-LOGICAL checkpoint_FlexIO "Do checkpointing with IOFlexIO"
+LOGICAL checkpoint "Do checkpointing with IOFlexIO"
{
} "no"
-LOGICAL reuse_fh "Reuse file handles by closing files after each write operation."
+LOGICAL out3d_reuse_filehandles "Reuse file handles by closing files after each write operation."
{
} "no"
@@ -69,7 +69,7 @@ EXTEND STRING outdir "Name of IO output directory"
########################
# How often to do output
########################
-EXTEND INT output_every "How often to do IO output"
+EXTEND INT out_every "How often to do IO output"
{
-1:* ::
} -1
@@ -78,16 +78,16 @@ EXTEND INT output_every "How often to do IO output"
################
# various things
################
-EXTEND LOGICAL output_verbose "Give extended screen output in IO?"
+EXTEND LOGICAL verbose "Give extended screen output in IO?"
{
} "no"
-EXTEND LOGICAL output3d_datestamp "Write date as attribute to IO 3D output file?"
+EXTEND LOGICAL out3D_datestamp "Write date as attribute to IO 3D output file?"
{
} "yes"
-EXTEND LOGICAL output3d_parameters "Write parameters to IO 3D output file?"
+EXTEND LOGICAL out3D_parameters "Write parameters to IO 3D output file?"
{
} "yes"
-EXTEND LOGICAL output3d_structures "Write structures to IO 3D output file?"
+EXTEND LOGICAL out3D_structures "Write structures to IO 3D output file?"
{
} "yes"
@@ -95,21 +95,21 @@ EXTEND LOGICAL output3d_structures "Write structures to IO 3D output file?"
#######################
# Specific to 3D output
#######################
-EXTEND KEYWORD iomode "Which mode for 3D IO"
+EXTEND KEYWORD out3D_mode "Which mode for 3D 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 ioproc_every"
"onefile" :: "all output is written into a single file by processor 0"
} "proc"
-EXTEND INT ioproc_every "Do IO on every N processors."
+EXTEND INT out3D_procs "Do IO on every N processors."
{
1:* :: "Must be a positive integer"
} 8
-EXTEND LOGICAL onefileperslice "Write one file per time slice, as opposed to all data in one file"
+EXTEND LOGICAL out3D_septimefiles "Write one file per time slice, as opposed to all data in one file"
{
} "no"
-EXTEND LOGICAL unchunked "Don't write data in chunks."
+EXTEND LOGICAL out3D_unchunked "Don't write data in chunks."
{
} "no"
@@ -117,19 +117,19 @@ EXTEND LOGICAL unchunked "Don't write data in chunks."
##############################################
# Downsampling parameters (only for 3D output)
##############################################
-EXTEND INT downsample_x "Factor by which to downsample output in x direction. Point (0,0,0) is always included."
+EXTEND INT out3D_downsample_x "Factor by which to downsample output in x direction. Point (0,0,0) is always included."
{
1:* :: "Must be a positive integer"
} 1
-EXTEND INT downsample_y "Factor by which to downsample output in y direction. Point (0,0,0) is always included."
+EXTEND INT out3D_downsample_y "Factor by which to downsample output in y direction. Point (0,0,0) is always included."
{
1:* :: "Must be a positive integer"
} 1
-EXTEND INT downsample_z "Factor by which to downsample output in z direction. Point (0,0,0) is always included."
+EXTEND INT out3D_downsample_z "Factor by which to downsample output in z direction. Point (0,0,0) is always included."
{
1:* :: "Must be a positive integer"
} 1
-EXTEND LOGICAL out_single "Output 3D data in single precision ? This parameter is ignored for Cactus compiled with SINGLE_PRECISION."
+EXTEND LOGICAL out3D_single "Output 3D data in single precision ? This parameter is ignored for Cactus compiled with single precision"
{
} "no"