source: trunk/docs/app-paramEx.tex @ 1213

Last change on this file since 1213 was 1078, checked in by MatthewWhiting, 12 years ago

Updating user guide with DS9 parameters & example, and slightly improved VOTable example. Also updated the version number.

File size: 6.2 KB
Line 
1% -----------------------------------------------------------------------
2% app-paramEx.tex: Example input parameter files, and how the
3%                  parameters are listed in the output.
4% -----------------------------------------------------------------------
5% Copyright (C) 2006, Matthew Whiting, ATNF
6%
7% This program is free software; you can redistribute it and/or modify it
8% under the terms of the GNU General Public License as published by the
9% Free Software Foundation; either version 2 of the License, or (at your
10% option) any later version.
11%
12% Duchamp is distributed in the hope that it will be useful, but WITHOUT
13% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14% FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15% for more details.
16%
17% You should have received a copy of the GNU General Public License
18% along with Duchamp; if not, write to the Free Software Foundation,
19% Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
20%
21% Correspondence concerning Duchamp may be directed to:
22%    Internet email: Matthew.Whiting [at] atnf.csiro.au
23%    Postal address: Dr. Matthew Whiting
24%                    Australia Telescope National Facility, CSIRO
25%                    PO Box 76
26%                    Epping NSW 1710
27%                    AUSTRALIA
28% -----------------------------------------------------------------------
29\secA{Example parameter files}
30\label{app-input}
31
32This is what a typical parameter file would look like.
33
34\begin{verbatim}
35imageFile       /home/mduchamp/fountain.fits
36logFile         logfile.txt
37outFile         results.txt
38spectraFile     spectra.ps
39flagSubsection  false
40flagOutputRecon false
41flagOutputResid 0
42flagTrim        1
43flagMW          1
44minMW           75
45maxMW           112
46flagGrowth      1
47growthCut       1.5
48flagATrous      1
49reconDim        1         
50scaleMin        1
51snrRecon        4
52flagFDR         1
53alphaFDR        0.1
54snrCut          3
55threshSpatial   3
56threshVelocity  7
57\end{verbatim}
58
59Note that, as in this example, the flag parameters can be entered as
60strings (\texttt{true}/\texttt{false}) or integers
61(\texttt{1}/\texttt{0}). Also, note that it is not necessary to
62include all these parameters in the file, only those that need to be
63changed from the defaults (as listed in Appendix~\ref{app-param}),
64which in this case would be very few. A minimal parameter file might
65look like:
66\begin{verbatim}
67imageFile       /home/mduchamp/fountain.fits
68flagLog         false
69flagATrous      1
70snrRecon        3
71snrCut          2.5
72minChannels     4
73\end{verbatim}
74This will reconstruct the cube with a lower SNR value than the
75default, select objects at a lower threshold,  with a looser minimum
76channel requirement, and not keep a log of the intermediate
77detections.
78
79The following page demonstrates how the parameters are presented to
80the user, both on the screen at execution time, and in the output and
81log files. On each line, there is a description on the parameter, the
82relevant parameter name that is used in the input file (if there is
83one that the user can enter), and the value of the parameter being
84used.
85
86\newpage
87{\scriptsize
88\begin{verbatim}
89---- Parameters ----
90Image to be analysed.........................[imageFile]  =  fountain.fits
91Intermediate Logfile...........................[logFile]  =  duchamp-Logfile.txt
92Final Results file.............................[outFile]  =  duchamp-Results.txt
93Header for results file.....................[headerFile]  =  duchamp-Results.hdr
94Spectrum file..............................[spectraFile]  =  duchamp-Spectra.ps
95Text file with ascii spectral data.....[spectraTextFile]  =  duchamp-Spectra.txt
96VOTable file...................................[votFile]  =  duchamp-Results.xml
97Karma annotation file........................[karmaFile]  =  duchamp-Results.ann
98DS9 annotation file............................[ds9File]  =  duchamp-Results.reg
990th Moment Map...............................[momentMap]  =  duchamp-MomentMap.ps
100Detection Map.............................[detectionMap]  =  duchamp-DetectionMap.ps
101Display a map in a pgplot xwindow?.........[flagXOutput]  =  true
102Saving reconstructed cube?.............[flagOutputRecon]  =  false
103Saving residuals from reconstruction?..[flagOutputResid]  =  false
104Saving mask cube?.......................[flagOutputMask]  =  false
105Saving 0th moment to FITS file?.........[flagOutputMask]  =  false
106------
107Type of searching performed.................[searchType]  =  spectral
108Blank Pixel Value.......................................  =  -8.00061
109Trimming Blank Pixels?........................[flagTrim]  =  false
110Searching for Negative features?..........[flagNegative]  =  false
111Removing Milky Way channels?....................[flagMW]  =  true
112Milky Way Channels.......................[minMW - maxMW]  =  75-113
113Area of Beam (pixels)...................................  =  14.6848   (beam: 3.6 x 3.6 pixels)
114Removing baselines before search?.........[flagBaseline]  =  false
115Smoothing data prior to searching?..........[flagSmooth]  =  false
116Using A Trous reconstruction?...............[flagATrous]  =  true
117Number of dimensions in reconstruction........[reconDim]  =  1
118Minimum scale in reconstruction...............[scaleMin]  =  1
119SNR Threshold within reconstruction...........[snrRecon]  =  3
120Filter being used for reconstruction........[filterCode]  =  1 (B3 spline function)
121Using Robust statistics?...............[flagRobustStats]  =  true
122Using FDR analysis?............................[flagFDR]  =  false
123SNR Threshold (in sigma)........................[snrCut]  =  3
124Minimum # Pixels in a detection.................[minPix]  =  5
125Minimum # Channels in a detection..........[minChannels]  =  3
126Minimum # Voxels in a detection..............[minVoxels]  =  7
127Growing objects after detection?............[flagGrowth]  =  false
128Using Adjacent-pixel criterion?...........[flagAdjacent]  =  true
129Max. velocity separation for merging....[threshVelocity]  =  7
130Reject objects before merging?...[flagRejectBeforeMerge]  =  false
131Merge objects in two stages?.......[flagTwoStageMerging]  =  false
132Method of spectral plotting.............[spectralMethod]  =  sum
133Type of object centre used in results......[pixelCentre]  =  centroid
134--------------------
135\end{verbatim}
136}
137%\end{minipage}
138%\end{sideways}
Note: See TracBrowser for help on using the repository browser.