aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2001-08-02 15:36:20 +0000
committertradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2001-08-02 15:36:20 +0000
commit9f559affd230ba4f8cfce60e3ee8304c4213b108 (patch)
tree311c39e8306ca02c3b7bdbbb9792afb70da03c99 /param.ccl
parentcaa27ec00c3ccdb565550952c36e2745294d3e2f (diff)
Added two new parameters
KEYWORD out1D_style "Which style for 1D lines ASCII output" { "xgraph" :: "f over x plots suitable for xgraph" "gnuplot f(x)" :: "f over x plots suitable for gnuplot" "gnuplot f(t,x)" :: "f over t,x plots suitable for gnuplot" } "xgraph" KEYWORD out2D_style "Which style for 2D slices ASCII output" { "gnuplot f(x,y)" :: "f over x,y plots suitable for gnuplot" "gnuplot f(t,x,y)" :: "f over t,x,y plots suitable for gnuplot" } "gnuplot f(x,y)" and marked old parameter out_style as being depricated in beta12. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@70 94b1c47f-dcfd-45ef-a468-0854c0e9e350
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl16
1 files changed, 15 insertions, 1 deletions
diff --git a/param.ccl b/param.ccl
index 6b8038c..91b3d67 100644
--- a/param.ccl
+++ b/param.ccl
@@ -52,17 +52,31 @@ INT out2D_every "How often to do 2D ASCII output, overrides out_every" STEERABLE
#################
# output style
#################
-KEYWORD out_style "Which style for 1D ASCII output"
+KEYWORD out_style "Which style for 1D ASCII output (DEPRICATED IN BETA12)"
{
"gnuplot" :: "output readable by gnuplot"
"xgraph" :: "output readable by xgraph"
} "xgraph"
+KEYWORD out1D_style "Which style for 1D lines ASCII output"
+{
+ "xgraph" :: "f over x plots suitable for xgraph"
+ "gnuplot f(x)" :: "f over x plots suitable for gnuplot"
+ "gnuplot f(t,x)" :: "f over t,x plots suitable for gnuplot"
+} "xgraph"
+
+KEYWORD out2D_style "Which style for 2D slices ASCII output"
+{
+ "gnuplot f(x,y)" :: "f over x,y plots suitable for gnuplot"
+ "gnuplot f(t,x,y)" :: "f over t,x,y plots suitable for gnuplot"
+} "gnuplot f(x,y)"
+
STRING out_format "Which format for ASCII floating-point number output" STEERABLE = ALWAYS
{
"^(\.[0-9]{1,2})?[EGefg]$" :: "output with given precision in exponential / floating point notation"
} ".13f"
+
############################
# Specific to 1D output
# Choosing what output to do