source: branches/NewStructure/src/param.hh @ 1441

Last change on this file since 1441 was 1208, checked in by MatthewWhiting, 11 years ago

A stable version of the new branch structure that actually builds without errors. Doesn't produce anything useful as yet, but at least things largely build OK!

File size: 31.6 KB
Line 
1// -----------------------------------------------------------------------
2// param.hh: Definition of the parameter set.
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 PARAM_H
29#define PARAM_H
30
31#include <iostream>
32#include <string>
33#include <vector>
34#include <math.h>
35#include <wcslib/wcs.h>
36#include <wcslib/wcshdr.h>
37#include <duchamp/Utils/Section.hh>
38#include <duchamp/Utils/VOParam.hh>
39#include <duchamp/ATrous/filter.hh>
40#include <duchamp/FitsIO/DuchampBeam.hh>
41
42namespace duchamp
43{
44
45  /// @brief Write out info on a parameter to e.g. the results file.
46  void recordParameters(std::ostream& theStream, Param &par, std::string paramName, std::string paramDesc, std::string paramValue);
47
48  /// @brief A macro to handle streamed output to recordParameters
49#define recordParam(outstream,par,string1,string2,instream) \
50  do{                                                       \
51    std::ostringstream oss;                                 \
52    oss<<instream;                                          \
53    recordParameters(outstream,par,string1,string2,oss.str());  \
54  }while(0)
55
56  class FitsHeader; // foreshadow this so that Param knows it exists
57
58  const int numSortingParamOptions = 10;
59  const std::string sortingParamOptions[numSortingParamOptions]={"xvalue","yvalue","zvalue","ra","dec","vel","w50","iflux","pflux","snr"};
60
61
62  /// @brief Class to store general parameters.
63  ///
64  /// @details This is a general repository for parameters that are used by all
65  /// functions. This is how the user interacts with the program, as
66  /// parameters are read in from disk files through functions in this
67  /// class.
68
69  class Param
70  {
71  public:
72    /// @brief Default constructor.
73    Param();
74
75    /// @brief Copy constructor for Param.
76    Param(const Param& p);
77
78    /// @brief Assignment operator for Param.
79    Param& operator= (const Param& p);
80
81    /// @brief Destructor function. 
82    virtual ~Param();
83
84    /// @brief Define the default values of each parameter.
85    void  defaultValues();
86
87    //-----------------
88    // Functions in param.cc
89    //
90    /// @brief Parse the command line parameters correctly.
91    OUTCOME getopts(int argc, char ** argv, std::string progname="Duchamp");
92
93    /// @brief Read in parameters from a disk file.
94    OUTCOME readParams(std::string paramfile);
95
96    /// @brief Check the parameter list for inconsistencies
97    void   checkPars();
98
99    OUTCOME checkImageExists();
100
101    /// @brief Copy certain necessary FITS header parameters from a FitsHeader object
102    void   copyHeaderInfo(FitsHeader &head);
103
104    /// @brief Determine filename in which to save the moment map.
105    std::string outputMomentMapFile();
106
107    /// @brief Determine filename in which to save the moment-0 mask.
108    std::string outputMomentMaskFile();
109
110    /// @brief Determine filename in which to save the baseline array.
111    std::string outputBaselineFile();
112
113    /// @brief Determine filename in which to save the mask array.
114    std::string outputMaskFile();
115
116    /// @brief Determine filename in which to save the smoothed array.
117    std::string outputSmoothFile();
118
119    /// @brief Determine filename in which to save the reconstructed array.
120    std::string outputReconFile();
121
122    /// @brief Determine filename in which to save the residual array from the atrous reconstruction.
123    std::string outputResidFile();
124
125    /// @brief Print the parameter set in a readable fashion.
126    friend std::ostream& operator<< ( std::ostream& theStream, Param& par);
127    friend class Image;
128
129    std::vector<VOParam> getVOParams();
130
131    void writeToBinaryFile(std::string &filename);
132    std::streampos readFromBinaryFile(std::string &filename, std::streampos loc=0);
133    void writeToBinaryFile(){writeToBinaryFile(binaryCatalogue);};
134    std::streampos readFromBinaryFile(std::streampos loc=0){return readFromBinaryFile(binaryCatalogue,loc);};
135
136    //------------------
137    // Functions in FitsIO/subsection.cc
138    //
139    /// @brief Make sure the subsection strings are OK, with FITS access.
140    OUTCOME verifySubsection();
141    /// @brief Parse the subsection strings with a dimension set
142    OUTCOME parseSubsections(std::vector<long> &dim);
143    OUTCOME parseSubsections(std::vector<int> &dim);
144    OUTCOME parseSubsections(long *dim, int size);
145
146    /// @brief Set the correct offset values for each axis
147    void   setOffsets(struct wcsprm *wcs);
148
149    /// @brief Set the correct offset values for each axis
150    void   setOffsets(struct wcsprm &wcs);
151
152    //------------------
153    // These are in param.cc
154    /// @brief Is a pixel value a BLANK?
155    bool   isBlank(float &value);
156
157    /// @brief Is a given channel flagged as being in the Milky Way?           
158    bool   isInMW(int z);
159
160    /// @brief Is a given pixel position OK for use with stats calculations?
161    bool   isStatOK(int x, int y, int z);
162
163    /// @brief Make a mask array -- an array saying whether each pixel is BLANK or not
164    bool  *makeBlankMask(float *array, size_t size);
165
166    /// @brief Make a mask array -- an array saying whether each pixel is able to be used for statistics calculations
167    bool *makeStatMask(float *array, size_t *dim);
168
169    //--------------------
170    // Basic inline accessor functions
171    //
172    std::string getImageFile(){return imageFile;};
173    void   setImageFile(std::string fname){imageFile = fname;};
174    std::string getFullImageFile(){
175      if(flagSubsection) return imageFile+pixelSec.getSection();
176      else return imageFile;
177    };
178    bool   getFlagSubsection(){return flagSubsection;};
179    void   setFlagSubsection(bool flag){flagSubsection=flag;};
180    std::string getSubsection(){return pixelSec.getSection();};
181    void   setSubsection(std::string range){pixelSec.setSection(range);};
182    Section &section(){Section &rsection = pixelSec; return rsection;};
183    bool   getFlagReconExists(){return flagReconExists;};
184    void   setFlagReconExists(bool flag){flagReconExists=flag;};
185    std::string getReconFile(){return reconFile;};
186    void   setReconFile(std::string file){reconFile = file;};
187    bool   getFlagSmoothExists(){return flagSmoothExists;};
188    void   setFlagSmoothExists(bool flag){flagSmoothExists=flag;};
189    std::string getSmoothFile(){return smoothFile;};
190    void   setSmoothFile(std::string file){smoothFile = file;};
191    //
192    bool   getFlagUsePrevious(){return usePrevious;};
193    void   setFlagUsePrevious(bool flag){usePrevious=flag;};
194    std::string getObjectList(){return objectList;};
195    void   setObjectList(std::string s){objectList = s;};
196    std::vector<int> getObjectRequest();
197    std::vector<bool> getObjectChoices();
198    std::vector<bool> getObjectChoices(int numObjects);
199    //
200    bool   getFlagLog(){return flagLog;};
201    void   setFlagLog(bool flag){flagLog=flag;};
202    std::string getLogFile(){return logFile;};
203    void   setLogFile(std::string fname){logFile = fname;};
204    std::string getOutFile(){return outFile;};
205    void   setOutFile(std::string fname){outFile = fname;};
206    bool   getFlagSeparateHeader(){return flagSeparateHeader;};
207    void   setFlagSeparateHeader(bool b){flagSeparateHeader=b;};
208    std::string getHeaderFile(){return headerFile;};
209    void   setHeaderFile(std::string s){headerFile=s;};
210    bool   getFlagWriteBinaryCatalogue(){return flagWriteBinaryCatalogue;};
211    void   setFlagWriteBinaryCatalogue(bool b){flagWriteBinaryCatalogue=b;};
212    std::string getBinaryCatalogue(){return binaryCatalogue;};
213    void   setBinaryCatalogue(std::string s){binaryCatalogue=s;};
214    bool   getFlagPlotSpectra(){return flagPlotSpectra;};
215    void   setFlagPlotSpectra(bool b){flagPlotSpectra=b;};
216    std::string getSpectraFile(){return spectraFile;};
217    void   setSpectraFile(std::string fname){spectraFile = fname;};
218    bool   getFlagPlotIndividualSpectra(){return flagPlotIndividualSpectra;};
219    void   setFlagPlotIndividualSpectra(bool b){flagPlotIndividualSpectra=b;};
220    bool   getFlagTextSpectra(){return flagTextSpectra;};
221    void   setFlagTextSpectra(bool b){flagTextSpectra = b;};
222    std::string getSpectraTextFile(){return spectraTextFile;};
223    void   setSpectraTextFile(std::string fname){spectraTextFile = fname;};
224    bool   getFlagOutputBaseline(){return flagOutputBaseline;};
225    void   setFlagOutputBaseline(bool flag){flagOutputBaseline=flag;};
226    std::string getFileOutputBaseline(){return fileOutputBaseline;};
227    void   setFileOutputBaseline(std::string s){fileOutputBaseline=s;};
228    bool   getFlagOutputMomentMap(){return flagOutputMomentMap;};
229    void   setFlagOutputMomentMap(bool flag){flagOutputMomentMap=flag;};
230    std::string getFileOutputMomentMap(){return fileOutputMomentMap;};
231    void   setFileOutputMomentMap(std::string s){fileOutputMomentMap=s;};
232    bool   getFlagOutputMomentMask(){return flagOutputMomentMask;};
233    void   setFlagOutputMomentMask(bool flag){flagOutputMomentMask=flag;};
234    std::string getFileOutputMomentMask(){return fileOutputMomentMask;};
235    void   setFileOutputMomentMask(std::string s){fileOutputMomentMask=s;};
236    bool   getFlagOutputMask(){return flagOutputMask;};
237    void   setFlagOutputMask(bool flag){flagOutputMask=flag;};
238    std::string getFileOutputMask(){return fileOutputMask;};
239    void   setFileOutputMask(std::string s){fileOutputMask=s;};
240    bool   getFlagMaskWithObjectNum(){return flagMaskWithObjectNum;};
241    void   setFlagMaskWithObjectNum(bool flag){flagMaskWithObjectNum=flag;};
242    bool   getFlagOutputSmooth(){return flagOutputSmooth;};
243    void   setFlagOutputSmooth(bool flag){flagOutputSmooth=flag;};
244    std::string getFileOutputSmooth(){return fileOutputSmooth;};
245    void   setFileOutputSmooth(std::string s){fileOutputSmooth=s;};
246    bool   getFlagOutputRecon(){return flagOutputRecon;};
247    void   setFlagOutputRecon(bool flag){flagOutputRecon=flag;};
248    std::string getFileOutputRecon(){return fileOutputRecon;};
249    void   setFileOutputRecon(std::string s){fileOutputRecon=s;};
250    bool   getFlagOutputResid(){return flagOutputResid;};
251    void   setFlagOutputResid(bool flag){flagOutputResid=flag;};
252    std::string getFileOutputResid(){return fileOutputResid;};
253    void   setFileOutputResid(std::string s){fileOutputResid=s;};
254    bool   getFlagVOT(){return flagVOT;};
255    void   setFlagVOT(bool flag){flagVOT=flag;};
256    std::string getVOTFile(){return votFile;};
257    void   setVOTFile(std::string fname){votFile = fname;};
258    std::string getAnnotationType(){return annotationType;};
259    void   setAnnotationType(std::string s){annotationType=s;};
260    bool   getFlagKarma(){return flagKarma;};
261    void   setFlagKarma(bool flag){flagKarma=flag;};
262    std::string getKarmaFile(){return karmaFile;};
263    void   setKarmaFile(std::string fname){karmaFile = fname;};
264    bool   getFlagDS9(){return flagDS9;};
265    void   setFlagDS9(bool flag){flagDS9=flag;};
266    std::string getDS9File(){return ds9File;};
267    void   setDS9File(std::string fname){ds9File = fname;};
268    bool   getFlagCasa(){return flagCasa;};
269    void   setFlagCasa(bool flag){flagCasa=flag;};
270    std::string getCasaFile(){return casaFile;};
271    void   setCasaFile(std::string fname){casaFile = fname;};
272    bool   getFlagMaps(){return flagMaps;};
273    void   setFlagMaps(bool flag){flagMaps=flag;};
274    std::string getDetectionMap(){return detectionMap;};
275    void   setDetectionMap(std::string fname){detectionMap = fname;};
276    std::string getMomentMap(){return momentMap;};
277    void   setMomentMap(std::string fname){momentMap = fname;};
278    bool   getFlagXOutput(){return flagXOutput;};
279    void   setFlagXOutput(bool b){flagXOutput=b;};
280    int    getPrecFlux(){return precFlux;};
281    void   setPrecFlux(int i){precFlux=i;};
282    int    getPrecVel(){return precVel;};
283    void   setPrecVel(int i){precVel=i;};
284    int    getPrecSNR(){return precSNR;};
285    void   setPrecSNR(int i){precSNR=i;};
286    //
287    bool   getFlagNegative(){return flagNegative;};
288    void   setFlagNegative(bool flag){flagNegative=flag;};
289    bool   getFlagBlankPix(){return flagBlankPix;};
290    void   setFlagBlankPix(bool flag){flagBlankPix=flag;};
291    float  getBlankPixVal(){return blankPixValue;};
292    void   setBlankPixVal(float v){blankPixValue=v;};
293    int    getBlankKeyword(){return blankKeyword;};
294    void   setBlankKeyword(int v){blankKeyword=v;};
295    float  getBscaleKeyword(){return bscaleKeyword;};
296    void   setBscaleKeyword(float v){bscaleKeyword=v;};
297    float  getBzeroKeyword(){return bzeroKeyword;};
298    void   setBzeroKeyword(float v){bzeroKeyword=v;};
299    bool   getFlagMW(){return flagMW;};
300    void   setFlagMW(bool flag){flagMW=flag;};
301    int    getMaxMW(){return maxMW - zSubOffset;};
302    void   setMaxMW(int m){maxMW=m;};
303    int    getMinMW(){return minMW - zSubOffset;};
304    void   setMinMW(int m){minMW=m;};
305    void   setBeamSize(float s){areaBeam = s;};
306    float  getBeamSize(){return areaBeam;};
307    void   setBeamFWHM(float s){fwhmBeam = s;};
308    float  getBeamFWHM(){return fwhmBeam;};
309    void   setBeamAsUsed(DuchampBeam &b){beamAsUsed = b;}; // just have the set function as we only want this for the operator<< function. Set from FitsHeader::itsBeam
310    std::string getNewFluxUnits(){return newFluxUnits;};
311    void   setNewFluxUnits(std::string s){newFluxUnits=s;};
312    std::string getSearchType(){return searchType;};
313    void   setSearchType(std::string s){searchType=s;};
314    //
315    bool   getFlagTrim(){return flagTrim;};
316    void   setFlagTrim(bool b){flagTrim=b;};
317    bool   getFlagCubeTrimmed(){return hasBeenTrimmed;};
318    void   setFlagCubeTrimmed(bool flag){hasBeenTrimmed = flag;};
319    size_t getBorderLeft(){return borderLeft;};
320    void   setBorderLeft(size_t b){borderLeft = b;};
321    size_t getBorderRight(){return borderRight;};
322    void   setBorderRight(size_t b){borderRight = b;};
323    size_t getBorderBottom(){return borderBottom;};
324    void   setBorderBottom(size_t b){borderBottom = b;};
325    size_t getBorderTop(){return borderTop;};
326    void   setBorderTop(size_t b){borderTop = b;};
327    //
328    long   getXOffset(){return xSubOffset;};
329    void   setXOffset(long o){xSubOffset = o;};
330    long   getYOffset(){return ySubOffset;};
331    void   setYOffset(long o){ySubOffset = o;};
332    long   getZOffset(){return zSubOffset;};
333    void   setZOffset(long o){zSubOffset = o;};
334    //
335    unsigned int   getMinPix(){return minPix;};
336    void   setMinPix(unsigned int m){minPix=m;};
337    //   
338    bool   getFlagGrowth(){return flagGrowth;};
339    void   setFlagGrowth(bool flag){flagGrowth=flag;};
340    float  getGrowthCut(){return growthCut;};
341    void   setGrowthCut(float c){growthCut=c;};
342    float  getGrowthThreshold(){return growthThreshold;};
343    void   setGrowthThreshold(float f){growthThreshold=f;};
344    bool   getFlagUserGrowthThreshold(){return flagUserGrowthThreshold;};
345    void   setFlagUserGrowthThreshold(bool b){flagUserGrowthThreshold=b;};
346    //   
347    bool   getFlagFDR(){return flagFDR;};
348    void   setFlagFDR(bool flag){flagFDR=flag;};
349    float  getAlpha(){return alphaFDR;};
350    void   setAlpha(float a){alphaFDR=a;};
351    int    getFDRnumCorChan(){return FDRnumCorChan;};
352    void   setFDRnumCorChan(int i){FDRnumCorChan=i;};
353    //
354    bool   getFlagBaseline(){return flagBaseline;};
355    void   setFlagBaseline(bool flag){flagBaseline = flag;};
356    //
357    bool   getFlagStatSec(){return flagStatSec;};
358    void   setFlagStatSec(bool flag){flagStatSec=flag;};
359    std::string getStatSec(){return statSec.getSection();};
360    void   setStatSec(std::string range){statSec.setSection(range);};
361    Section &statsec(){Section &rsection = statSec; return rsection;};
362    bool   getFlagRobustStats(){return flagRobustStats;};
363    void   setFlagRobustStats(bool flag){flagRobustStats=flag;};
364    float  getCut(){return snrCut;};
365    void   setCut(float c){snrCut=c;};
366    float  getThreshold(){return threshold;};
367    void   setThreshold(float f){threshold=f;};
368    bool   getFlagUserThreshold(){return flagUserThreshold;};
369    void   setFlagUserThreshold(bool b){flagUserThreshold=b;};
370    //   
371    bool   getFlagSmooth(){return flagSmooth;};
372    void   setFlagSmooth(bool b){flagSmooth=b;};
373    std::string getSmoothType(){return smoothType;};
374    void   setSmoothType(std::string s){smoothType=s;};
375    int    getHanningWidth(){return hanningWidth;};
376    void   setHanningWidth(int f){hanningWidth=f;};
377    void   setKernMaj(float f){kernMaj=f;};
378    float  getKernMaj(){return kernMaj;};
379    void   setKernMin(float f){kernMin=f;};
380    float  getKernMin(){return kernMin;};
381    void   setKernPA(float f){kernPA=f;};
382    float  getKernPA(){return kernPA;};
383    //   
384    bool   getFlagATrous(){return flagATrous;};
385    void   setFlagATrous(bool flag){flagATrous=flag;};
386    int    getReconDim(){return reconDim;};
387    void   setReconDim(int i){reconDim=i;};
388    unsigned int getMinScale(){return scaleMin;};
389    void   setMinScale(unsigned int s){scaleMin=s;};
390    unsigned int getMaxScale(){return scaleMax;};
391    void   setMaxScale(unsigned int s){scaleMax=s;};
392    float  getAtrousCut(){return snrRecon;};
393    void   setAtrousCut(float c){snrRecon=c;};
394    float  getReconConvergence(){return reconConvergence;};
395    void   setReconConvergence(float f){reconConvergence = f;};
396    int    getFilterCode(){return filterCode;};
397    void   setFilterCode(int c){filterCode=c;};
398    std::string getFilterName(){return reconFilter.getName();};
399    Filter& filter(){ Filter &rfilter = reconFilter; return rfilter; };
400    //   
401    bool   getFlagAdjacent(){return flagAdjacent;};
402    void   setFlagAdjacent(bool flag){flagAdjacent=flag;};
403    float  getThreshS(){return threshSpatial;};
404    void   setThreshS(float t){threshSpatial=t;};
405    float  getThreshV(){return threshVelocity;};
406    void   setThreshV(float t){threshVelocity=t;};
407    unsigned int getMinChannels(){return minChannels;};
408    void   setMinChannels(unsigned int n){minChannels=n;};
409    unsigned int getMinVoxels(){return minVoxels;};
410    void   setMinVoxels(unsigned int n){minVoxels=n;};
411    bool   getFlagRejectBeforeMerge(){return flagRejectBeforeMerge;};
412    void   setFlagRejectBeforeMerge(bool flag){flagRejectBeforeMerge=flag;};
413    bool   getFlagTwoStageMerging(){return flagTwoStageMerging;};
414    void   setFlagTwoStageMerging(bool flag){flagTwoStageMerging=flag;};
415    //
416    std::string getSpectralMethod(){return spectralMethod;};
417    void   setSpectralMethod(std::string s){spectralMethod=s;};
418    std::string getSpectralType(){return spectralType;};
419    void   setSpectralType(std::string s){spectralType=s;};
420    float  getRestFrequency(){return restFrequency;};
421    void   setRestFrequency(float f){restFrequency=f;};
422    bool    getFlagRestFrequencyUsed(){return restFrequencyUsed;};
423    void    setFlagRestFrequencyUsed(bool b){restFrequencyUsed=b;};
424    std::string getSpectralUnits(){return spectralUnits;};
425    void   setSpectralUnits(std::string s){spectralUnits=s;};
426    std::string getPixelCentre(){return pixelCentre;};
427    void   setPixelCentre(std::string s){pixelCentre=s;};
428    std::string getSortingParam(){return sortingParam;};
429    void   setSortingParam(std::string s){sortingParam=s;};
430    bool   drawBorders(){return borders;};
431    void   setDrawBorders(bool f){borders=f;};
432    bool   drawBlankEdge(){return blankEdge;};
433    void   setDrawBlankEdge(bool f){blankEdge=f;};
434
435    /// @brief Are we in verbose mode?
436    bool   isVerbose(){return verbose;};
437    void   setVerbosity(bool f){verbose=f;};
438 
439    /// @brief Set the comment characters
440    void setCommentString(std::string comment){commentStr = comment;};
441    std::string commentString(){return commentStr;};
442
443  private:
444    // Input files
445    std::string imageFile;       ///< The image to be analysed.
446    bool        flagSubsection;  ///< Whether we just want a subsection of the image
447    Section pixelSec;            ///< The Section object storing the pixel subsection information.
448    bool        flagReconExists; ///< The reconstructed array is in a FITS file on disk.
449    std::string reconFile;       ///< The FITS file containing the reconstructed array.
450    bool        flagSmoothExists;///< The smoothed array is in a FITS file.
451    std::string smoothFile;      ///< The FITS file containing the smoothed array.
452
453    bool       usePrevious;      ///< Whether to read the detections from a previously-created log file
454    std::string objectList;      ///< List of objects to re-plot
455
456    // Output files
457    bool        flagLog;         ///< Should we do the intermediate logging?
458    std::string logFile;         ///< Where the intermediate logging goes.
459    std::string outFile;         ///< Where the final results get put.
460    bool        flagSeparateHeader;///< Should the header information(parameters & statistics) be written to a separate file to the table ofresults?
461    std::string headerFile;      ///< Where the header information to go with the results table should be written.
462    bool        flagWriteBinaryCatalogue; ///< Whether to write the catalogue to a binary file
463    std::string binaryCatalogue; ///< The binary file holding the catalogue of detected pixels.
464    bool        flagPlotSpectra; ///< Should we plot the spectrum of each detection?
465    std::string spectraFile;     ///< Where the spectra are displayed
466    bool        flagPlotIndividualSpectra; ///< Should the sources be plotted with spectra in individual files?
467    bool        flagTextSpectra; ///< Should a text file with all spectra be written?
468    std::string spectraTextFile; ///< Where the text spectra are written.
469    bool        flagOutputBaseline;  ///< Should the cube of baseline values be written to a FITS file?
470    std::string fileOutputBaseline;  ///< The name of the baseline FITS file
471    bool        flagOutputMomentMap;  ///< Should the moment map image be written to a FITS file?
472    std::string fileOutputMomentMap;  ///< The name of the moment map FITS file
473    bool        flagOutputMomentMask;  ///< Should the moment-0 mask be written to a FITS file?
474    std::string fileOutputMomentMask;  ///< The name of the moment-0 mask FITS file
475    bool        flagOutputMask;  ///< Should the mask image be written?
476    std::string fileOutputMask;  ///< The name of the mask image.
477    bool        flagMaskWithObjectNum;///< Should the mask values be labeled with the object ID (or just 1)?
478    bool        flagOutputSmooth;///< Should the smoothed cube be written?
479    std::string fileOutputSmooth;///< The name of the smoothed cube file
480    bool        flagOutputRecon; ///< Should the reconstructed cube be written to a FITS file?
481    std::string fileOutputRecon; ///< The name of the reconstructed cube file
482    bool        flagOutputResid; ///< Should the residuals from the reconstruction be written to a FITS file?
483    std::string fileOutputResid; ///< The name of the residual cube file
484    bool        flagVOT;         ///< Should we save results in VOTable format?
485    std::string votFile;         ///< Where the VOTable goes.
486    bool        flagKarma;       ///< Should we save results in Karma annotation format?
487    std::string karmaFile;       ///< Where the Karma annotation file goes.
488    bool        flagCasa;        ///< Should we save results in CASA region format?
489    std::string casaFile;        ///< Where the CASA region file goes.
490    bool        flagDS9;         ///< Should we save results in DS9 annotation format?
491    std::string ds9File;         ///< Where the DS9 annotation file goes.
492    std::string annotationType;  ///< Should the annoations be circles or borders?
493    bool        flagMaps;        ///< Should we produce detection and moment maps in postscript form?
494    std::string detectionMap;    ///< The name of the detection map (postscript file).
495    std::string momentMap;       ///< The name of the 0th moment map (ps file).
496    bool        flagXOutput;     ///< Should there be an xwindows output of the detection map?
497    int         precFlux;        ///< The desired precision for flux values.
498    int         precVel;         ///< The desired precision for velocity/frequency values.
499    int         precSNR;         ///< The desired precision for the SNR values.
500
501    // Cube related parameters
502    bool        flagNegative;    ///< Are we going to search for negative features?
503    bool        flagBlankPix;    ///< A flag that indicates whether there are pixels defined as BLANK and whether we need to remove & ignore them in processing.
504    float       blankPixValue;   ///< Pixel value that is considered BLANK.
505    int         blankKeyword;    ///< The FITS header keyword BLANK.
506    float       bscaleKeyword;   ///< The FITS header keyword BSCALE.
507    float       bzeroKeyword;    ///< The FITS header keyword BZERO.
508    std::string newFluxUnits;    ///< The user-requested flux units, to replace BUNIT.
509
510    // Milky-Way parameters
511    bool        flagMW;          ///< A flag that indicates whether to ignore the Milky Way channels.
512    int         maxMW;           ///< Last  Milky Way channel
513    int         minMW;           ///< First Milky Way channel
514
515    // Trim-related
516    bool        flagTrim;        ///< Does the user want the cube trimmed?
517    bool        hasBeenTrimmed;  ///< Has the cube been trimmed of excess BLANKs around the edge?
518    size_t      borderLeft;      ///< The number of BLANK pixels trimmed from the left of the cube;
519    size_t      borderRight;     ///< The number trimmed from the Right of the cube;
520    size_t      borderBottom;    ///< The number trimmed from the Bottom of the cube;
521    size_t      borderTop;       ///< The number trimmed from the Top of the cube;
522
523    // Subsection offsets
524    long       *offsets;         ///< The array of offsets for each FITS axis.
525    long        sizeOffsets;     ///< The size of the offsets array.
526    long        xSubOffset;      ///< The subsection's x-axis offset
527    long        ySubOffset;      ///< The subsection's y-axis offset
528    long        zSubOffset;      ///< The subsection's z-axis offset
529
530    // Baseline related
531    bool        flagBaseline;    ///< Whether to do baseline subtraction before reconstruction and/or searching.
532
533    // Detection-related
534    unsigned int minPix;         ///< Minimum number of pixels for a detected object to be counted
535    float       areaBeam;        ///< Size (area) of the beam in pixels.
536    float       fwhmBeam;        ///< FWHM of the beam in pixels.
537    DuchampBeam beamAsUsed;      ///< A copy of the beam as used in FitsHeader - only used here for output
538    std::string searchType;      ///< How to do the search: by channel map or by spectrum
539
540    // Object growth
541    bool        flagGrowth;      ///< Are we growing objects once they are found?
542    float       growthCut;       ///< The SNR that we are growing objects down to.
543    bool        flagUserGrowthThreshold; ///< Whether the user has manually defined a growth threshold
544    float       growthThreshold; ///< The threshold for growing objects down to
545
546    // FDR analysis
547    bool        flagFDR;         ///< Should the FDR method be used?
548    float       alphaFDR;        ///< Alpha value for FDR detection algorithm
549    int         FDRnumCorChan;   ///< Number of correlated channels, used in the FDR algorithm
550
551    // Basic detection
552    bool        flagStatSec;     ///< Whether we just want to use a subsection of the image to calculate the statistics.
553    Section     statSec;         ///< The Section object storing the statistics subsection information.
554    bool        flagRobustStats; ///< Whether to use robust statistics.
555    float       snrCut;          ///< How many sigma above mean is a detection when sigma-clipping
556    float       threshold;       ///< What the threshold is (when sigma-clipping).
557    bool        flagUserThreshold;///< Whether the user has defined a threshold of their own.
558
559    // Smoothing of the cube
560    bool        flagSmooth;      ///< Should the cube be smoothed before searching?
561    std::string smoothType;      ///< The type of smoothing to be done.
562    int         hanningWidth;    ///< Width for hanning smoothing.
563    float       kernMaj;         ///< Semi-Major axis of gaussian smoothing kernel
564    float       kernMin;         ///< Semi-Minor axis of gaussian smoothing kernel
565    float       kernPA;          ///< Position angle of gaussian smoothing kernel, in degrees east of north (i.e. anticlockwise).
566
567    // A trous reconstruction parameters
568    bool   flagATrous;      ///< Are we using the a trous reconstruction?
569    int    reconDim;        ///< How many dimensions to use for the reconstruction?
570    unsigned int    scaleMin;        ///< Min scale used in a trous reconstruction
571    unsigned int    scaleMax;        ///< Max scale used in a trous reconstruction
572    float  snrRecon;        ///< SNR cutoff used in a trous reconstruction (only wavelet coefficients that survive this threshold are kept)
573    float  reconConvergence;///< Convergence criterion for reconstruction - maximum fractional change in residual standard deviation
574    Filter reconFilter;     ///< The filter used for reconstructions.
575    int    filterCode;      ///< The code number for the filter to be used (saves having to parse names)
576
577    // Volume-merging parameters
578    bool   flagAdjacent;    ///< Whether to use the adjacent criterion for judging if objects are to be merged.
579    float  threshSpatial;   ///< Maximum spatial separation between objects
580    float  threshVelocity;  ///< Maximum channels separation between objects
581    unsigned int minChannels;     ///< Minimum no. of channels to make an object
582    unsigned int minVoxels;       ///< Minimum no. of voxels required in an object
583    bool   flagRejectBeforeMerge; ///< Whether to reject sources before merging
584    bool   flagTwoStageMerging;  ///< Whether to do a partial merge when the objects are found, via the mergeIntoList function.
585
586    // Input-Output related
587    std::string spectralMethod; ///< A string indicating choice of spectral plotting method: choices are "peak" (default) or "sum"
588    std::string spectralType;   ///< The requested CTYPE that the spectral axis be converted to
589    float  restFrequency;       ///< The rest frequency that should be used when converting - overrides that in the FITS file
590    bool   restFrequencyUsed;   ///< A flag indicating whether the spectral type has been converted from that in the FITS file
591    std::string spectralUnits;  ///< A string indicating what units the spectral axis should be quoted in.
592    std::string pixelCentre;    ///< A string indicating which type of centre to give the results in: "average", "centroid", or "peak"(flux).
593    std::string sortingParam;   ///< A string indicating the parameter to sort the detection list on.
594    bool   borders;             ///< Whether to draw a border around the individual pixels of a detection in the spectral display
595    bool   blankEdge;           ///< Whether to draw a border around the BLANK pixel region in the moment maps and cutout images
596    bool   verbose;             ///< Whether to use maximum verbosity -- use progress indicators in the reconstruction & merging steps.
597
598    std::string commentStr; ///< Any comment characters etc that need to be prepended to any output via the << operator.
599
600  };
601
602  //===========================================================================
603
604
605}
606#endif
Note: See TracBrowser for help on using the repository browser.