aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-09-26 05:05:56 +0000
committerjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-09-26 05:05:56 +0000
commit5fba974c16f9bbf6e5e0cd7ec3ab09ec83a79218 (patch)
treedeef203e34a327778c1e7d056be310c95ee3fa52 /param.ccl
parent1a826b78b503406ab21d25148e52c7547a0e578a (diff)
More code reorganization and removal of C++ items.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@3 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl26
1 files changed, 23 insertions, 3 deletions
diff --git a/param.ccl b/param.ccl
index a4140dd..1708a86 100644
--- a/param.ccl
+++ b/param.ccl
@@ -3,10 +3,30 @@
private:
-STRING isosurfacer "What to isosurface and how. Format: {(functionName) (isolevel1, isolevel2, ...) (format1, format2, ...) (itiso, resolution, firstIteration, uniqverts)} {} ..."
+STRING output_format "What form to output the datasets" STEERABLE = ALWAYS
{
- .* :: A regex which matches everything
-} ""
+ .* :: "Comma separated list. Can be UCD, VRML, ASCII, SOCK or None"
+} "None"
+
+STRING output_var "What Grid Function name to output"
+{
+ .* :: "Eventually a comma separated list, but now a single name"
+} "None"
+
+CCTK_REAL4 isovalue "Isosurface value" STEERABLE = ALWAYS
+{
+ .* :: "Any floating point value"
+} 1.0
+
+INT output_frequency "How often to output the isosurfaces" STEERABLE = ALWAYS
+{
+ .* :: "Some positive integer"
+} 1
+
+INT output_start "First iteration to start drawing isosurfaces. Default=1" STEERABLE = ALWAYS
+{
+ .* :: "Some positive integer"
+} 1
INT outer_boundary_cutoff "Number of voxels to cut off the outer boundaries" STEERABLE = ALWAYS
{