source: tags/release-1.0.7/InputComplete @ 1441

Last change on this file since 1441 was 211, checked in by Matthew Whiting, 18 years ago
  • Updated CHANGES ready for new version.
  • Updated InputComplete? with new parameters.
  • Added new scale bar lengths and fixed bugs in drawScaleBar.
  • Tried to fix problem with setCubeStats -- seems to be taking longer than it should. See ticket:3
File size: 6.0 KB
Line 
1# FULL PARAMETER LIST
2# -------------------
3#
4# This file contains the full list of user-definable parameters. They are
5#  grouped here according to their use, and the values quoted are the defaults:
6#  if a given parameter is not included in your parameter file, this is the
7#  value it will take.
8#
9#
10# INPUT RELATED
11# imageFile -- the FITS image.
12# flagSubsection -- whether to get a subsection of that image.
13# subsection -- the subsection to read in, in format [x1:x2,y1:y2,z1:z2],
14#               or * to indicate the full range
15# flagReconExists -- set to true if the reconstructed cube exists as a FITS
16#                    file (ie. it has been saved from a previous Duchamp run)
17# reconFile -- the location of the FITS file containing the reconstructed cube
18# flagSmoothExists -- set to true if the smoothed cube exists as a FITS
19#                    file (ie. it has been saved from a previous Duchamp run)
20# smoothFile -- the location of the FITS file containing the smoothed cube
21
22imageFile       your-file-here
23flagSubsection  0
24subsection      [*,*,*]
25flagReconExists 0
26reconFile       your-reconstructed-file-here
27flagReconExists 1
28reconFile       your-smoothed-file-here
29
30# OUTPUT RELATED
31# flagLog -- log the intermediate results?   
32# logfile-- the file to put that in.
33# outFile -- the final output list.
34# spectraFile -- the postscript file of spectra
35# flagOutputSmooth -- whether to save the smoothed arrays as a FITS file
36# flagOutputRecon/Resid -- whether to save the reconstruction & residual arrays
37#                          as FITS files
38# flagVOT -- make a VOTable file of the results? 
39# votFile -- the file to put it in
40# flagKarma -- make a Karma annotation file of the results? 
41# karmaFile -- the file to put it in
42# flagMaps -- save postscript versions of the detection and 0th moment maps?
43# detectionMap, momentMap -- the postscript files produced.
44# flagXOutput -- display the moment map in a pgplot window
45
46flagLog         1
47logFile         duchamp-Logfile.txt
48outFile         duchamp-Results.txt
49spectraFile     duchamp-Spectra.ps
50flagOutputSmooth 0
51flagOutputRecon 0
52flagOutputResid 0
53flagVOT         0
54votFile         duchamp-Results.xml
55flagKarma       0
56karmaFile       duchamp-Results.ann
57flagMaps        1
58detectionMap    duchamp-DetectionMap.ps
59momentMap       duchamp-MomentMap.ps
60flagXOutput     1
61
62# FIXING UP THE CUBE
63# flagBlankPix -- whether to replace & ignore blank pixels.
64# blankPixValue -- what value they should take. This is overridden by
65#                  FITS header information.
66# flagBaseline -- whether to subtract spectral baselines before searching
67# flagMW -- ignore a range of channels (to remove Milky Way emission)?
68# minMW, maxMW -- the first and last channels to be ignored
69
70flagBlankPix    1
71blankPixValue   -8.00061
72flagMW          0
73minMW           75
74maxMW           112
75flagBaseline    0
76
77# GENERAL DETECTION RELATED
78# flagNegative -- Are the features being searched for negative (set to true)
79#                 or positive (false -- the default)?
80# snrCut --  How many sigma above mean is a detection when sigma-clipping
81# threshold -- The threshold flux dividing source and non-source. Used instead
82#              of calculating it from the cube's statistics. If not specified,
83#              it will be calculated.
84# flagGrowth -- Should the detections be "grown" to a lower significance value?
85# growthCut -- The lower threshold used when growing detections
86
87flagNegative    0
88snrCut          3.
89threshold       0.
90flagGrowth      0
91growthCut       2.
92
93# RECONSTRUCTION RELATED
94# flagATrous -- Whether or not to do the reconstruction before searching
95# reconDim -- The number of dimensions in which to perform the reconstruction.
96# scaleMin -- The minimum scale (starts at 1) to be included in the
97#              reconstruction
98# snrRecon -- The threshold used in filtering the wavelet coefficient arrays.
99# filterCode -- The code number for the choice of filter to be used in the
100#               reconstruction:  1 = B3-spline filter, 2 = Triangle function,
101#                                3 = Haar wavelet. Other numbers default to 2.
102
103flagATrous      1
104reconDim        3
105scaleMin        1
106snrRecon        4.
107filterCode      1
108
109# HANNING SMOOTHING
110# flagSmooth -- whether to Hanning-smooth the spectral dimension of the cube.
111# hanningWidth -- the width parameter of the Hanning smoothing function
112
113flagSmooth      false
114hanningWidth    5
115
116# FALSE DISCOVERY RATE METHOD
117# flagFDR -- Whether or not to use the false discovery rate method instead of
118#   simple sigma clipping.
119# alphaFDR -- The "alpha" parameter for the FDR method -- what desired
120#             percentage of discoveries will be false. Expressed as a decimal.
121
122flagFDR         0
123alphaFDR        0.01
124
125# MERGING PARAMETERS
126# flagAdjacent -- Whether to use the "adjacent criterion" to judge if objects
127#                  are to be merged.
128# threshSpatial -- If flagAdjacent=false, this is the maximum spatial
129#                   separation between objects for them to be merged.
130# threshVelocity -- The maximum channel separation between objects for them
131#                   to be merged.
132# minChannels -- The minimum number of consecutive channels an object must have
133#                 for it to be accepted.
134# minPix -- Minimum number of spatial pixels a detected object must have for
135#            it to be counted
136
137flagAdjacent    1
138threshSpatial   3
139threshVelocity  7
140minChannels     3
141minPix          2
142
143# OTHER PARAMETERS
144# verbose -- whether to provide progress indicators on the terminal during
145#             execution
146# drawBorders -- whether to draw borders around the detections on the moment
147#                 maps in the output.
148# drawBlankEdges -- whether to draw an outline around any BLANK regions in the
149#                    moment maps and image cutouts.
150# spectralMethod -- how to plot the spectra in the output -- the spectrum of
151#                    the peak pixel ("peak" -- the default), or integrated over
152#                    all spatial pixels present ("sum")
153# spectralUnits -- what units you want the spectral axis to be plotted in and
154#                   values quoted in (including the units of integrated flux)
155
156verbose         1
157drawBorders     1
158drawBlankEdges  1
159spectralMethod  peak
160spectralUnits   km/s
Note: See TracBrowser for help on using the repository browser.