aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 74e514e800dd0b84a53d2ecfbd7979121d54b1f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Parameter definitions for thorn IsoSurfacer
# $Header$

private:

STRING output_format "What form to output the datasets" STEERABLE = ALWAYS
{
  .* :: "Comma separated list.  Can be UCD, VRML, ASCII, SOCK or None"
} "None"

STRING output_var "What Grid Function name to output" STEERABLE = ALWAYS
{
 .* :: "Eventually a comma separated list, but now a single name"
} "None"

CCTK_REAL 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
{
 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 ""
{
}