From 1940d71782b4cc3519972ebf4504bbe4486cf7d0 Mon Sep 17 00:00:00 2001 From: allen Date: Tue, 21 Sep 1999 11:27:32 +0000 Subject: 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 --- param.ccl | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 param.ccl (limited to 'param.ccl') 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 "" +{ +} "" + + -- cgit v1.2.3