source: tags/release-0.9/InputComplete @ 813

Last change on this file since 813 was 26, checked in by Matthew Whiting, 18 years ago

Added karmaFile & flagKarma to the complete input example.

File size: 3.5 KB
Line 
1# INPUT RELATED
2# imageFile -- the FITS image.
3# flagSubsection -- whether to get a subsection of that image.
4# subsection -- the subsection to read in, in format [x1:x2,y1:y2,z1:z2],
5#               or * to indicate the full range
6
7imageFile       your-file-here
8flagSubsection  1
9subsection      [*,*,*]
10
11# OUTPUT RELATED
12# flagLog -- log the intermediate results?   logfile-- the file to put that in.
13# outFile -- the final output list.
14# spectraFile -- the postscript file of spectra
15# flagOutputRecon/Resid -- whether to save the reconstruction & residual arrays as FITS files
16# flagVOT -- make a VOTable file of the results?   votFile -- the file to put it in
17# flagKarma -- make a Karma annotation file of the results?  karmaFile -- the file to put it in
18# flagMaps -- save postscript versions of the detection and 0th moment maps?
19# detectionMap, momentMap -- the postscript files produced.
20
21flagLog         1
22logFile         logfile.txt
23outFile         results.txt
24spectraFile     spectra.ps
25flagOutputRecon 0
26flagOutputResid 0
27flagVOT         0
28votFile         results.xml
29flagKarma       0
30karmaFile       results.ann
31flagMaps        1
32detectionMap    latest-detection-map.ps
33momentMap       latest-moment-map.ps
34
35# FIXING UP THE CUBE
36# flagBlankPix -- whether to replace & ignore blank pixels.
37# blankPixValue -- what value they should take. This is overridden by FITS header information.
38# flagBaseline -- whether to subtract spectral baselines before searching
39# flagMW -- whether to excise a range of channels (to remove Milky Way emission)
40# minMW, maxMW -- the first and last channels to be excised
41
42flagBlankPix    1
43blankPixValue   -8.00061
44flagBaseline    1
45flagMW          1
46minMW           75
47maxMW           112
48
49# GENERAL DETECTION RELATED
50# snrCut --  How many sigma above mean is a detection when sigma-clipping
51# flagGrowth -- Should the detections be "grown" to a lower significance value?
52# growthCut -- The lower threshold used when growing detections
53
54snrCut          2.5
55flagGrowth      0
56growthCut       1.5
57
58# RECONSTRUCTION RELATED
59# flagATrous -- Whether or not to do the reconstruction before searching
60# scaleMin -- The minimum scale (starts at 1) to be included in the reconstruction
61# snrRecon -- The threshold used in filtering the wavelet coefficient arrays.
62# filterCode -- The code number for the choice of filter to be used in the reconstruction:
63# 1 = B3-spline filter, 2 = Triangle function, 3 = Haar wavelet. Other numbers default to 2.
64
65flagATrous      1
66scaleMin        1
67snrRecon        5.
68filterCode      2
69
70# FALSE DISCOVERY RATE METHOD
71# flagFDR -- Whether or not to use the false discovery rate method instead of
72#   simple sigma clipping.
73# alphaFDR -- The "alpha" parameter for the FDR method -- what desired percentage
74#   of discoveries will be false. Expressed as a decimal.
75
76flagFDR         0
77alphaFDR        0.05
78
79# MERGING PARAMETERS
80# flagAdjacent -- Whether to use the "adjacent criterion" to judge if objects are to be merged.
81# threshSpatial -- If flagAdjacent=false, this is the maximum spatial separation between objects
82#    for them to be merged.
83# threshVelocity -- The maximum channel separation between objects for them to be merged.
84# minChannels -- The minimum number of consecutive channels an object must have for it to be accepted.
85# minPix -- Minimum number of spatial pixels for a detected object to be counted
86
87flagAdjacent    1
88threshSpatial   3
89threshVelocity  7
90minChannels     4
91minPix          3
92
93# OTHER PARAMETERS
94# verbose -- whether to provide progress indicators on the terminal during execution
95# drawBorders -- whether to draw borders around the detections on the moment maps in the output.
96verbose         1
97drawBorders     1
Note: See TracBrowser for help on using the repository browser.