aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>1999-09-21 11:27:32 +0000
committerallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>1999-09-21 11:27:32 +0000
commit1940d71782b4cc3519972ebf4504bbe4486cf7d0 (patch)
treebc11dc4e95891c19d3e88c0b15bb4ebf068d1d45 /param.ccl
parentac667e93729515249ec4d81961d1c83e2a0e217d (diff)
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@3 b589c3ab-70e8-4b4d-a09f-cba2dd200880
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl84
1 files changed, 84 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..9610395
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,84 @@
+# Parameter definitions for thorn IOBasic
+# $Header$
+
+
+#############################################################################
+### declare IOBasic parameters
+#############################################################################
+private:
+
+##########################
+# Directory to output to (overriden by outdir)
+##########################
+
+STRING outdirScalar "Name of IO Scalar output directory, overrides outdir"
+{
+ .* :: A regex which matches everything
+} "outdir"
+
+##########################
+# What variables to output
+##########################
+STRING outInfo_vars "Variables to output as Info to screen"
+{
+ .* :: A regex which matches everything
+} ""
+STRING outScalar_vars "Variables to output as Info to screen"
+{
+ .* :: A regex which matches everything
+} ""
+
+
+########################
+# How often to do output
+########################
+INT outInfo_every "How often to do Info output"
+{
+ -1:* ::
+} -1
+INT outScalar_every "How often to do Info output"
+{
+ -1:* ::
+} -1
+
+
+#################
+# 1D output style
+#################
+KEYWORD outScalar_style "Which style for Scalar output"
+{
+ "gnuplot" :: "1D output readable by gnuplot"
+ "xgraph" :: "1D output readable by xgraph"
+} "xgraph"
+
+
+#############################################################################
+### import IOUtil parameters
+#############################################################################
+shares: IO
+
+####################
+# Output directories
+####################
+USES STRING outdir "Name of IO output directory"
+{
+} "."
+
+
+########################
+# How often to do output
+########################
+USES INT out_every "How often to do IO output"
+{
+ -1: ::
+}
+
+
+################
+# various things
+################
+USES BOOLEAN verbose ""
+{
+} ""
+
+