aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-09-25 04:50:00 +0000
committerjshalf <jshalf@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2000-09-25 04:50:00 +0000
commit1a826b78b503406ab21d25148e52c7547a0e578a (patch)
treeb53c3eb0696019f1e185ebba6708c5721a63a3ed /param.ccl
parenta3213b41c523b23a1c650b48026d5dac5e618909 (diff)
Initial add to the repository.
These are the basic files needed to re-implement isosurfacer in C. This has mostly been cleaned of C++ code, but hasn't been tested out yet. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@2 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl40
1 files changed, 40 insertions, 0 deletions
diff --git a/param.ccl b/param.ccl
new file mode 100644
index 0000000..a4140dd
--- /dev/null
+++ b/param.ccl
@@ -0,0 +1,40 @@
+# Parameter definitions for thorn IsoSurfacer
+# $Header$
+
+private:
+
+STRING isosurfacer "What to isosurface and how. Format: {(functionName) (isolevel1, isolevel2, ...) (format1, format2, ...) (itiso, resolution, firstIteration, uniqverts)} {} ..."
+{
+ .* :: A regex which matches everything
+} ""
+
+INT outer_boundary_cutoff "Number of voxels to cut off the outer boundaries" STEERABLE = ALWAYS
+{
+ 0:* :: "Zero or any positive number"
+} 0
+
+STRING format_str "If the precision specified in the default format string is less than what you need, then insert your own format for floating point numbers here"
+{
+ .* :: A regex which matches everything
+} "%3.3f"
+
+BOOLEAN allow_empty_sends "Allow the Isosurfacer to send zero-length vertex lists to the client application ? Ordinarily these zero-length sends are supressed." STEERABLE = ALWAYS
+{
+} "no"
+
+STRING outdir "Output directory for isosurface data files"
+{
+ .* :: A regex which matches everything
+} "."
+
+#############################################################################
+### import IOUtil parameters
+#############################################################################
+shares: IO
+
+####################
+# verbose flag
+####################
+USES BOOLEAN verbose ""
+{
+}