aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>1999-07-30 22:45:50 +0000
committerallen <allen@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>1999-07-30 22:45:50 +0000
commit6d39298ab6aa7827a6bb3a39a3d4a4f668bef17c (patch)
treec33aaf57a155cc045aa84575ba27eaad54b021b4 /param.ccl
parent3eea96885bb148ad341abf7f5a13c5a915ffcbb5 (diff)
A lot of parameter name changes, especially for IO
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@22 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl28
1 files changed, 14 insertions, 14 deletions
diff --git a/param.ccl b/param.ccl
index f844af5..9ddfbe6 100644
--- a/param.ccl
+++ b/param.ccl
@@ -5,7 +5,7 @@
#############################################################################
shares: grid
-USES KEYWORD symmetry ""
+USES KEYWORD domain ""
{
}
@@ -25,7 +25,7 @@ STRING outdir "Name of IO output directory"
########################
# How often to do output
########################
-INT output_every "How often to do IO output"
+INT out_every "How often to do IO output"
{
-1:* ::
} -1
@@ -33,16 +33,16 @@ INT output_every "How often to do IO output"
################
# various things
################
-LOGICAL output_verbose "Give extended screen output in IO?"
+LOGICAL verbose "Give extended screen output in IO?"
{
} "no"
-LOGICAL output3d_datestamp "Write date as attribute to IO 3D output file?"
+LOGICAL out3D_datestamp "Write date as attribute to IO 3D output file?"
{
} "yes"
-LOGICAL output3d_parameters "Write parameters to IO 3D output file?"
+LOGICAL out3D_parameters "Write parameters to IO 3D output file?"
{
} "yes"
-LOGICAL output3d_structures "Write structures to IO 3D output file?"
+LOGICAL out3D_structures "Write structures to IO 3D output file?"
{
} "yes"
@@ -50,21 +50,21 @@ LOGICAL output3d_structures "Write structures to IO 3D output file?"
#######################
# Specific to 3D output
#######################
-KEYWORD iomode "Which mode for 3D IO"
+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"
-INT ioproc_every "Do IO on every N processors."
+INT out3D_procs "Do IO on every N processors."
{
1:* :: "Must be a positive integer"
} 8
-LOGICAL onefileperslice "Write one file per time slice, as opposed to all data in one file"
+LOGICAL out3D_septimefiles "Write one file per time slice, as opposed to all data in one file"
{
} "no"
-LOGICAL unchunked "Don't write data in chunks."
+LOGICAL out3D_unchunked "Don't write data in chunks."
{
} "no"
@@ -72,19 +72,19 @@ LOGICAL unchunked "Don't write data in chunks."
##############################################
# Downsampling parameters (only for 3D output)
##############################################
-INT downsample_x "Factor by which to downsample output in x direction. Point (0,0,0) is always included."
+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
-INT downsample_y "Factor by which to downsample output in y direction. Point (0,0,0) is always included."
+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
-INT downsample_z "Factor by which to downsample output in z direction. Point (0,0,0) is always included."
+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
-LOGICAL out_single "Output 3D data in single precision ? This parameter is ignored for Cactus compiled with SINGLE_PRECISION."
+LOGICAL out3D_single "Output 3D data in single precision ? This parameter is ignored for Cactus compiled with single precision"
{
} "no"