source: trunk/InputComplete @ 63

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

Updated Makefile and InputComplete? to include the new source code files and
the new parameters.

File size: 3.6 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# flagNegative -- Are the features being searched for negative (set to true) or positive (false)?
51# snrCut --  How many sigma above mean is a detection when sigma-clipping
52# flagGrowth -- Should the detections be "grown" to a lower significance value?
53# growthCut -- The lower threshold used when growing detections
54
55flagNegative    0
56snrCut          2.5
57flagGrowth      0
58growthCut       1.5
59
60# RECONSTRUCTION RELATED
61# flagATrous -- Whether or not to do the reconstruction before searching
62# scaleMin -- The minimum scale (starts at 1) to be included in the reconstruction
63# snrRecon -- The threshold used in filtering the wavelet coefficient arrays.
64# filterCode -- The code number for the choice of filter to be used in the reconstruction:
65# 1 = B3-spline filter, 2 = Triangle function, 3 = Haar wavelet. Other numbers default to 2.
66
67flagATrous      1
68scaleMin        1
69snrRecon        5.
70filterCode      2
71
72# FALSE DISCOVERY RATE METHOD
73# flagFDR -- Whether or not to use the false discovery rate method instead of
74#   simple sigma clipping.
75# alphaFDR -- The "alpha" parameter for the FDR method -- what desired percentage
76#   of discoveries will be false. Expressed as a decimal.
77
78flagFDR         0
79alphaFDR        0.05
80
81# MERGING PARAMETERS
82# flagAdjacent -- Whether to use the "adjacent criterion" to judge if objects are to be merged.
83# threshSpatial -- If flagAdjacent=false, this is the maximum spatial separation between objects
84#    for them to be merged.
85# threshVelocity -- The maximum channel separation between objects for them to be merged.
86# minChannels -- The minimum number of consecutive channels an object must have for it to be accepted.
87# minPix -- Minimum number of spatial pixels for a detected object to be counted
88
89flagAdjacent    1
90threshSpatial   3
91threshVelocity  7
92minChannels     4
93minPix          3
94
95# OTHER PARAMETERS
96# verbose -- whether to provide progress indicators on the terminal during execution
97# drawBorders -- whether to draw borders around the detections on the moment maps in the output.
98verbose         1
99drawBorders     1
Note: See TracBrowser for help on using the repository browser.