source: trunk/src/duchamp.hh @ 890

Last change on this file since 890 was 872, checked in by MatthewWhiting, 13 years ago

Adding basic exception handling, with a new DuchampError? class and a try-catch loop in the main program.

File size: 10.4 KB
Line 
1// -----------------------------------------------------------------------
2// duchamp.hh: Definitions for use with Duchamp
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28#ifndef DUCHAMP_HH
29#define DUCHAMP_HH
30
31#include <iostream>
32#include <stdexcept>
33#include <string>
34
35// need to undef these in case other packages have them defined.
36#undef PACKAGE_BUGREPORT
37#undef PACKAGE_NAME
38#undef PACKAGE_STRING
39#undef PACKAGE_TARNAME
40#undef PACKAGE_VERSION
41#undef HAVE_PGPLOT
42#include <duchamp/config.h>
43
44#ifdef HAVE_PGPLOT
45#include <duchamp/Utils/mycpgplot.hh>
46#endif
47
48/// The primary namespace for all functionality directly related to Duchamp
49namespace duchamp
50{
51
52  /// @brief How to convey whether a function has worked
53  enum OUTCOME {SUCCESS=0, FAILURE};
54
55  /// Usage message for command line help.
56  const std::string ERR_USAGE_MSG =
57    "Usage: Duchamp [OPTION] [FILE]\n\
58Duchamp is an object finder for spectral-line FITS cubes.\n\
59\n\
60  -p FILE      Read in parameters from FILE, including FITS image location.\n\
61  -f FILE      Use default parameters with imageFile=FILE\n\
62  -x           Do not use X-windows PGPLOT output\n\
63               (equivalent to setting flagXOutput=false -- overrides the parameter file)\n\n\
64  -v           Return version number and exit\n\
65  -h           Display this help information and exit\n";
66
67  /// Usage message for command line help for Selavy.
68  const std::string SELAVY_ERR_USAGE_MSG =
69    "Usage: Selavy [OPTION] [FILE]\n\
70Selavy re-analyses and re-plots objects found by Duchamp.\n\
71\n\
72  -p FILE      Read in parameters from FILE, including FITS image location.\n\
73  -f FILE      Use default parameters with imageFile=FILE\n\
74  -x           Do not use X-windows PGPLOT output\n\
75               (equivalent to setting flagXOutput=false -- overrides the parameter file)\n\n\
76  -v           Return version number and exit\n\
77  -h           Display this help information and exit\n";
78
79  /// Shorter Usage message for command line help.
80  const std::string ERR_USAGE_MSG_SHORT="Usage: Duchamp -p [parameter file]\n";
81
82  /// The program name. (Duchamp)
83  const std::string PROGNAME = PACKAGE_NAME;
84
85  /// The program version
86  const std::string VERSION = PACKAGE_VERSION;
87
88  // Specialised functions to report warnings and errors -- in duchamp.cc
89  /// Print a warning message to the stderr
90  void duchampWarning(std::string subroutine, std::string warning);
91  /// Print an error message to the stderr and sound the bell
92  void duchampError(std::string subroutine, std::string error);
93
94  /// Define the duchamp exception class.
95  class DuchampError: public std::runtime_error
96  {
97  public:
98    /// Constructor taking a message
99    explicit DuchampError(const std::string& message);
100    /// empty destructor
101    virtual ~DuchampError() throw();
102  };
103
104
105
106  /// The spectral type that we want the wcsprm structs to be in.
107    const char duchampVelocityType[9] = "VOPT-F2W";
108  //const char duchampVelocityType[9] = "VELO-F2V";
109  /// The spectral type that we want the wcsprm structs to be in when no velocity info is present.
110  const char duchampFrequencyType[9] = "FREQ    ";
111
112  /// Descriptions of the various spectral axis types
113  enum TYPEDESC {FREQUENCY=0,VELOCITY,WAVELENGTH};
114  /// Human-readable descriptions of the various spectral axis types
115  const std::string duchampSpectralDescription[3]=
116    {"Frequency", "Velocity", "Wavelength"};
117
118  // The following are the FITS Header Keywords corresponding to the
119  // parameters related to the atrous reconstruction.
120
121  /// FITS header keyword for min atrous scale
122  const std::string keyword_scaleMin     = "DU_MINSC";
123  /// FITS header keyword for S/N used in atrous reconstruction
124  const std::string keyword_snrRecon     = "DU_ATCUT";
125  /// FITS header keyword for number of dimensions used in atrous reconstruction
126  const std::string keyword_reconDim     = "DU_ATDIM";
127  /// FITS header keyword for the code number of the filter used in atrous reconstruction
128  const std::string keyword_filterCode   = "DU_FILTR";
129  /// FITS header keyword: does this file hold the reconstructed array or the residual?
130  const std::string keyword_ReconResid   = "DU_RECON";
131  /// FITS header keyword: type of smoothing done.
132  const std::string keyword_smoothtype   = "DU_SMTYP";
133  /// FITS header keyword for the gaussian kernel major axis FWHM
134  const std::string keyword_kernmaj      = "DU_KMAJ";
135  /// FITS header keyword for the gaussian kernel minor axis FWHM
136  const std::string keyword_kernmin      = "DU_KMIN";
137  /// FITS header keyword for the gaussian kernel position angle
138  const std::string keyword_kernpa       = "DU_KPA";
139  /// FITS header keyword for the Hanning filter width
140  const std::string keyword_hanningwidth = "DU_WHANN";
141  /// FITS header keyword for the image subsection used
142  const std::string keyword_subsection   = "DU_IMSUB";
143
144  // And these are the comments corresponding to the relevant keywords
145  /// FITS header comment for DU_MINSC keyword
146  const std::string comment_scaleMin     = "Duchamp parameter scaleMin";
147  /// FITS header comment for DU_ATCUT keyword
148  const std::string comment_snrRecon     = "Duchamp parameter snrRecon";
149  /// FITS header comment for DU_ATDIM keyword
150  const std::string comment_reconDim     = "Duchamp parameter reconDim";
151  /// FITS header comment for DU_FILTR keyword
152  const std::string comment_filterCode   = "Duchamp parameter filterCode";
153  /// FITS header comment for DU_RECON keyword
154  const std::string comment_ReconResid   = "Is this the reconstruction or residual?";
155  /// FITS header comment for DU_SMTYP keyword
156  const std::string comment_smoothtype   = "Type of smoothing done";
157  /// FITS header comment for DU_KMAJ  keyword
158  const std::string comment_kernmaj      = "Duchamp parameter kernMaj";
159  /// FITS header comment for DU_KMIN  keyword
160  const std::string comment_kernmin      = "Duchamp parameter kernMin";
161  /// FITS header comment for DU_KPA   keyword
162  const std::string comment_kernpa       = "Duchamp parameter kernPA";
163  /// FITS header comment for DU_WHANN keyword
164  const std::string comment_hanningwidth = "Duchamp parameter hanningWidth";
165  /// FITS header comment for DU_IMSUB keyword
166  const std::string comment_subsection   = "Subsection of the original image";
167
168  // Descriptive Headers: for the reconstruction case
169  const std::string header_reconHistory1 =
170    "Reconstructed with a trous wavelet technique";
171  const std::string header_reconHistory2 =
172    "Reconstruction by " + PROGNAME + " v." + VERSION;
173  const std::string header_reconHistory_input =
174    "Original (input) image used by " + PROGNAME + " follows";
175  const std::string header_reconSubsection_comment  =
176    "A subsection of the original was reconstructed by " + PROGNAME;
177  const std::string header_atrous_comment  =
178    "The following are the Duchamp parameters used in reconstruction";
179
180  // Descriptive Headers: for the Smoothing case
181  const std::string header_smoothHistory =
182    "Smoothed by " + PROGNAME + " v." + VERSION;
183  const std::string header_smoothHistory_input =
184    "Original (input) image used by " + PROGNAME + " follows";
185  const std::string header_smoothSubsection_comment  =
186    "A subsection of the original was smoothed by " + PROGNAME;
187  const std::string header_smoothSpatial = "Spatial, gaussian kernel";
188  const std::string header_smoothSpectral= "Spectral, hanning filter";
189
190  // Descriptive Headers: for the output Mask image
191  const std::string header_maskHistory =
192    "Results of searching by " + PROGNAME + " v." + VERSION;
193  const std::string header_maskHistory_input =
194    "Input image used by " + PROGNAME + " follows";
195  const std::string header_maskSubsection_comment =
196    "A subsection of the original was searched by " + PROGNAME;
197
198  // Descriptive Headers: for the output Moment-0 image
199  const std::string header_moment0History =
200    "Moment-0 map from searching by " + PROGNAME + " v." + VERSION;
201  const std::string header_moment0History_input =
202    "Input image used by " + PROGNAME + " follows";
203  const std::string header_moment0Subsection_comment =
204    "A subsection of the original was searched by " + PROGNAME;
205
206}
207
208#ifdef HAVE_PGPLOT
209namespace duchamp
210{
211
212  // Colours used in graphical output
213  /// The colour for the Blank edges
214  const int DUCHAMP_BLANK_EDGE_COLOUR = mycpgplot::MAGENTA;
215  /// The colour for the edge of the cube
216  const int DUCHAMP_CUBE_EDGE_COLOUR = mycpgplot::YELLOW;
217  /// The colour for the reconstructed spectra
218  const int DUCHAMP_RECON_SPECTRA_COLOUR = mycpgplot::RED;
219  /// The colour for the baseline spectra
220  const int DUCHAMP_BASELINE_SPECTRA_COLOUR = mycpgplot::YELLOW;
221  /// The colour for the object outline
222  const int DUCHAMP_OBJECT_OUTLINE_COLOUR = mycpgplot::BLUE;
223  /// The colour for the Milky-way region spectral boundaries
224  const int DUCHAMP_MILKY_WAY_COLOUR = mycpgplot::DARKGREEN;
225  /// The colour for the tick marks in the image cutouts
226  const int DUCHAMP_TICKMARK_COLOUR = mycpgplot::RED;
227  /// The colour for the text identifying objects on the maps
228  const int DUCHAMP_ID_TEXT_COLOUR = mycpgplot::RED;
229  /// The colour for the WCS axes on the maps
230  const int DUCHAMP_WCS_AXIS_COLOUR = mycpgplot::WCSGREEN;
231
232}
233
234#else
235namespace duchamp
236{
237  /// The colour for the text identifying objects on the maps
238  const int DUCHAMP_ID_TEXT_COLOUR = 2;
239  /// The colour for the WCS axes on the maps
240  const int DUCHAMP_WCS_AXIS_COLOUR = 3;
241
242}
243
244#endif
245
246
247#endif
Note: See TracBrowser for help on using the repository browser.