aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
blob: 56e18924655f8a4fb0427aea3567d9f5eee4c6e7 (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
# Parameter definitions for thorn NaNChecker
# $Header$

#############################################################################
### declare NaNChecker parameters
#############################################################################
private:

INT check_every "How often to check for NaN's" STEERABLE = ALWAYS
{
  0   :: "Never (default)"
  1:* :: "Every so many iterations"
} 0

INT report_max "How many NaN's to report for a single variable" STEERABLE = ALWAYS
{
  -1   :: "Report all (default)"
   0:* :: "Do not report more than report_max number of NaN's"
} -1

STRING check_vars "Groups and/or variables to check for NaN's" STEERABLE = ALWAYS
{
  .* :: "List of full group and/or variable names, or 'all' for everything"
} ""

KEYWORD check_for "Check for NaN's and/or infinite numbers (only evaluated if finite(3) is available)" STEERABLE = ALWAYS
{
  "NaN"  :: "Check only for NaN's"
  "Inf"  :: "Check only for infinite numbers"
  "both" :: "Check for both NaN's and infinite numbers"
} "both"

BOOLEAN out_NaNmask "Dump the NaN grid function mask into an HDF5 file" STEERABLE = ALWAYS
{
} "yes"

KEYWORD action_if_found "What to do if a NaN was found" STEERABLE = ALWAYS
{
  "just warn" :: "Just print a level 1 warning"
  "terminate" :: "Warn and terminate Cactus gracefully as soon as possible"
  "abort"     :: "Warn and abort Cactus immediately"
} "just warn"

KEYWORD verbose "How much information to give" STEERABLE = ALWAYS
{
  "all"      :: "All information"
  "standard" :: "Standard information"
} "standard"