source: trunk/InputComplete @ 17

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

Typo fix -- changed references of "1st moment" to "0th moment"

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