source: trunk/InputComplete @ 9

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

This is the first full import of all working code to
the Duchamp repository.
Made three directories at top level:

branches/ tags/ trunk/

and trunk/ has the full set of code:
ATrous/ Cubes/ Detection/ InputComplete? InputExample? README Utils/ docs/ mainDuchamp.cc param.cc param.hh

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 1st 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# minPix -- Minimum number of pixels for a detected object to be counted
48# snrCut --  How many sigma above mean is a detection when sigma-clipping
49# flagGrowth -- Should the detections be "grown" to a lower significance value?
50# growthCut -- The lower threshold used when growing detections
51
52minPix          3
53snrCut          2.5
54flagGrowth      0
55growthCut       1.5
56
57# RECONSTRUCTION RELATED
58# flagATrous -- Whether or not to do the reconstruction before searching
59# scaleMin -- The minimum scale (starts at 1) to be included in the reconstruction
60# snrRecon -- The threshold used in filtering the wavelet coefficient arrays.
61# filterCode -- The code number for the choice of filter to be used in the reconstruction:
62# 1 = B3-spline filter, 2 = Triangle function, 3 = Haar wavelet. Other numbers default to 2.
63
64flagATrous      1
65scaleMin        1
66snrRecon        5.
67filterCode      2
68
69# FALSE DISCOVERY RATE METHOD
70# flagFDR -- Whether or not to use the false discovery rate method instead of
71#   simple sigma clipping.
72# alphaFDR -- The "alpha" parameter for the FDR method -- what desired percentage
73#   of discoveries will be false. Expressed as a decimal.
74
75flagFDR         0
76alphaFDR        0.05
77
78# MERGING PARAMETERS
79# flagAdjacent -- Whether to use the "adjacent criterion" to judge if objects are to be merged.
80# threshSpatial -- If flagAdjacent=false, this is the maximum spatial separation between objects
81#    for them to be merged.
82# threshVelocity -- The maximum channel separation between objects for them to be merged.
83# minChannels -- The minimum number of consecutive channels an object must have for it to be accepted.
84
85flagAdjacent    1
86threshSpatial   3
87threshVelocity  7
88minChannels     4
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.