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

Last change on this file since 1441 was 1342, checked in by MatthewWhiting, 10 years ago

Initial commit of the code for #204. Porting the OptimisedGrower? from the ASKAP/Selavy code, getting it to build, and implementing as a separate growing step in Merger.cc. Still to test.

File size: 33.9 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<size_t> &dim);
143    OUTCOME parseSubsections(std::vector<long> &dim);
144    OUTCOME parseSubsections(std::vector<int> &dim);
145    OUTCOME parseSubsections(size_t *dim, int size);
146
147    /// @brief Set the correct offset values for each axis
148    void   setOffsets(struct wcsprm *wcs);
149
150    /// @brief Set the correct offset values for each axis
151    void   setOffsets(struct wcsprm &wcs);
152
153    //------------------
154    // These are in param.cc
155    /// @brief Is a pixel value a BLANK?
156    bool   isBlank(float &value);
157
158    /// @brief Has a given channel been flagged by the user?
159      bool isFlaggedChannel(int z);
160      std::vector<bool> getChannelFlags(int numChannels);
161
162    /// @brief Is a given pixel position OK for use with stats calculations?
163    bool   isStatOK(int x, int y, int z);
164
165    /// @brief Make a mask array -- an array saying whether each pixel is BLANK or not
166    bool  *makeBlankMask(float *array, size_t size);
167
168    /// @brief Make a mask array -- an array saying whether each pixel is able to be used for statistics calculations
169    bool *makeStatMask(float *array, size_t *dim);
170
171    //--------------------
172    // Basic inline accessor functions
173    //
174    std::string getImageFile(){return imageFile;};
175    void   setImageFile(std::string fname){imageFile = fname;};
176    std::string getFullImageFile(){
177      if(flagSubsection) return imageFile+pixelSec.getSection();
178      else return imageFile;
179    };
180    bool   getFlagSubsection(){return flagSubsection;};
181    void   setFlagSubsection(bool flag){flagSubsection=flag;};
182    std::string getSubsection(){return pixelSec.getSection();};
183    void   setSubsection(std::string range){pixelSec.setSection(range);};
184    Section &section(){Section &rsection = pixelSec; return rsection;};
185    bool   getFlagReconExists(){return flagReconExists;};
186    void   setFlagReconExists(bool flag){flagReconExists=flag;};
187    std::string getReconFile(){return reconFile;};
188    void   setReconFile(std::string file){reconFile = file;};
189    bool   getFlagSmoothExists(){return flagSmoothExists;};
190    void   setFlagSmoothExists(bool flag){flagSmoothExists=flag;};
191    std::string getSmoothFile(){return smoothFile;};
192    void   setSmoothFile(std::string file){smoothFile = file;};
193    //
194    bool   getFlagUsePrevious(){return usePrevious;};
195    void   setFlagUsePrevious(bool flag){usePrevious=flag;};
196    std::string getObjectList(){return objectList;};
197    void   setObjectList(std::string s){objectList = s;};
198    std::vector<int> getObjectListVector(){return objectListVector;};
199    void   setObjectListVector(std::vector<int> v){objectListVector = v;};
200    std::vector<int> getObjectRequest();
201    std::vector<bool> getObjectChoices();
202    std::vector<bool> getObjectChoices(int numObjects);
203    //
204    bool   getFlagLog(){return flagLog;};
205    void   setFlagLog(bool flag){flagLog=flag;};
206    std::string getLogFile(){return logFile;};
207    void   setLogFile(std::string fname){logFile = fname;};
208    std::string getOutFile(){return outFile;};
209    void   setOutFile(std::string fname){outFile = fname;};
210    bool   getFlagSeparateHeader(){return flagSeparateHeader;};
211    void   setFlagSeparateHeader(bool b){flagSeparateHeader=b;};
212    std::string getHeaderFile(){return headerFile;};
213    void   setHeaderFile(std::string s){headerFile=s;};
214    bool   getFlagWriteBinaryCatalogue(){return flagWriteBinaryCatalogue;};
215    void   setFlagWriteBinaryCatalogue(bool b){flagWriteBinaryCatalogue=b;};
216    std::string getBinaryCatalogue(){return binaryCatalogue;};
217    void   setBinaryCatalogue(std::string s){binaryCatalogue=s;};
218    bool   getFlagPlotSpectra(){return flagPlotSpectra;};
219    void   setFlagPlotSpectra(bool b){flagPlotSpectra=b;};
220    std::string getSpectraFile(){return spectraFile;};
221    void   setSpectraFile(std::string fname){spectraFile = fname;};
222    bool   getFlagPlotIndividualSpectra(){return flagPlotIndividualSpectra;};
223    void   setFlagPlotIndividualSpectra(bool b){flagPlotIndividualSpectra=b;};
224    bool   getFlagTextSpectra(){return flagTextSpectra;};
225    void   setFlagTextSpectra(bool b){flagTextSpectra = b;};
226    std::string getSpectraTextFile(){return spectraTextFile;};
227    void   setSpectraTextFile(std::string fname){spectraTextFile = fname;};
228    bool   getFlagOutputBaseline(){return flagOutputBaseline;};
229    void   setFlagOutputBaseline(bool flag){flagOutputBaseline=flag;};
230    std::string getFileOutputBaseline(){return fileOutputBaseline;};
231    void   setFileOutputBaseline(std::string s){fileOutputBaseline=s;};
232    bool   getFlagOutputMomentMap(){return flagOutputMomentMap;};
233    void   setFlagOutputMomentMap(bool flag){flagOutputMomentMap=flag;};
234    std::string getFileOutputMomentMap(){return fileOutputMomentMap;};
235    void   setFileOutputMomentMap(std::string s){fileOutputMomentMap=s;};
236    bool   getFlagOutputMomentMask(){return flagOutputMomentMask;};
237    void   setFlagOutputMomentMask(bool flag){flagOutputMomentMask=flag;};
238    std::string getFileOutputMomentMask(){return fileOutputMomentMask;};
239    void   setFileOutputMomentMask(std::string s){fileOutputMomentMask=s;};
240    bool   getFlagOutputMask(){return flagOutputMask;};
241    void   setFlagOutputMask(bool flag){flagOutputMask=flag;};
242    std::string getFileOutputMask(){return fileOutputMask;};
243    void   setFileOutputMask(std::string s){fileOutputMask=s;};
244    bool   getFlagMaskWithObjectNum(){return flagMaskWithObjectNum;};
245    void   setFlagMaskWithObjectNum(bool flag){flagMaskWithObjectNum=flag;};
246    bool   getFlagOutputSmooth(){return flagOutputSmooth;};
247    void   setFlagOutputSmooth(bool flag){flagOutputSmooth=flag;};
248    std::string getFileOutputSmooth(){return fileOutputSmooth;};
249    void   setFileOutputSmooth(std::string s){fileOutputSmooth=s;};
250    bool   getFlagOutputRecon(){return flagOutputRecon;};
251    void   setFlagOutputRecon(bool flag){flagOutputRecon=flag;};
252    std::string getFileOutputRecon(){return fileOutputRecon;};
253    void   setFileOutputRecon(std::string s){fileOutputRecon=s;};
254    bool   getFlagOutputResid(){return flagOutputResid;};
255    void   setFlagOutputResid(bool flag){flagOutputResid=flag;};
256    std::string getFileOutputResid(){return fileOutputResid;};
257    void   setFileOutputResid(std::string s){fileOutputResid=s;};
258    bool   getFlagVOT(){return flagVOT;};
259    void   setFlagVOT(bool flag){flagVOT=flag;};
260    std::string getVOTFile(){return votFile;};
261    void   setVOTFile(std::string fname){votFile = fname;};
262    std::string getAnnotationType(){return annotationType;};
263    void   setAnnotationType(std::string s){annotationType=s;};
264    bool   getFlagKarma(){return flagKarma;};
265    void   setFlagKarma(bool flag){flagKarma=flag;};
266    std::string getKarmaFile(){return karmaFile;};
267    void   setKarmaFile(std::string fname){karmaFile = fname;};
268    bool   getFlagDS9(){return flagDS9;};
269    void   setFlagDS9(bool flag){flagDS9=flag;};
270    std::string getDS9File(){return ds9File;};
271    void   setDS9File(std::string fname){ds9File = fname;};
272    bool   getFlagCasa(){return flagCasa;};
273    void   setFlagCasa(bool flag){flagCasa=flag;};
274    std::string getCasaFile(){return casaFile;};
275    void   setCasaFile(std::string fname){casaFile = fname;};
276    bool   getFlagMaps(){return flagMaps;};
277    void   setFlagMaps(bool flag){flagMaps=flag;};
278    std::string getDetectionMap(){return detectionMap;};
279    void   setDetectionMap(std::string fname){detectionMap = fname;};
280    std::string getMomentMap(){return momentMap;};
281    void   setMomentMap(std::string fname){momentMap = fname;};
282    bool   getFlagXOutput(){return flagXOutput;};
283    void   setFlagXOutput(bool b){flagXOutput=b;};
284    int    getPrecFlux(){return precFlux;};
285    void   setPrecFlux(int i){precFlux=i;};
286    int    getPrecVel(){return precVel;};
287    void   setPrecVel(int i){precVel=i;};
288    int    getPrecSNR(){return precSNR;};
289    void   setPrecSNR(int i){precSNR=i;};
290    //
291    bool   getFlagNegative(){return flagNegative;};
292    void   setFlagNegative(bool flag){flagNegative=flag;};
293    bool   getFlagBlankPix(){return flagBlankPix;};
294    void   setFlagBlankPix(bool flag){flagBlankPix=flag;};
295    float  getBlankPixVal(){return blankPixValue;};
296    void   setBlankPixVal(float v){blankPixValue=v;};
297    int    getBlankKeyword(){return blankKeyword;};
298    void   setBlankKeyword(int v){blankKeyword=v;};
299    float  getBscaleKeyword(){return bscaleKeyword;};
300    void   setBscaleKeyword(float v){bscaleKeyword=v;};
301    float  getBzeroKeyword(){return bzeroKeyword;};
302    void   setBzeroKeyword(float v){bzeroKeyword=v;};
303    std::vector<int> getFlaggedChannels(){return flaggedChannels;};
304    void   setFlaggedChannels(std::vector<int> v){flaggedChannels=v;};
305    std::string getFlaggedChannelList(){return flaggedChannelList;};
306    void   setFlaggedChannelList(std::string s){flaggedChannelList=s;};
307    void   setBeamSize(float s){areaBeam = s;};
308    float  getBeamSize(){return areaBeam;};
309    void   setBeamFWHM(float s){fwhmBeam = s;};
310    float  getBeamFWHM(){return fwhmBeam;};
311    void   setBeamAsUsed(DuchampBeam &b){beamAsUsed = b;}; // just have the set function as we only want this for the operator<< function. Set from FitsHeader::itsBeam
312    std::string getNewFluxUnits(){return newFluxUnits;};
313    void   setNewFluxUnits(std::string s){newFluxUnits=s;};
314    std::string getSearchType(){return searchType;};
315    void   setSearchType(std::string s){searchType=s;};
316    //
317    bool   getFlagTrim(){return flagTrim;};
318    void   setFlagTrim(bool b){flagTrim=b;};
319    bool   getFlagCubeTrimmed(){return hasBeenTrimmed;};
320    void   setFlagCubeTrimmed(bool flag){hasBeenTrimmed = flag;};
321    size_t getBorderLeft(){return borderLeft;};
322    void   setBorderLeft(size_t b){borderLeft = b;};
323    size_t getBorderRight(){return borderRight;};
324    void   setBorderRight(size_t b){borderRight = b;};
325    size_t getBorderBottom(){return borderBottom;};
326    void   setBorderBottom(size_t b){borderBottom = b;};
327    size_t getBorderTop(){return borderTop;};
328    void   setBorderTop(size_t b){borderTop = b;};
329    //
330    long   getXOffset(){return xSubOffset;};
331    void   setXOffset(long o){xSubOffset = o;};
332    long   getYOffset(){return ySubOffset;};
333    void   setYOffset(long o){ySubOffset = o;};
334    long   getZOffset(){return zSubOffset;};
335    void   setZOffset(long o){zSubOffset = o;};
336    //
337    bool   getFlagGrowth(){return flagGrowth;};
338    void   setFlagGrowth(bool flag){flagGrowth=flag;};
339    float  getGrowthCut(){return growthCut;};
340    void   setGrowthCut(float c){growthCut=c;};
341    float  getGrowthThreshold(){return growthThreshold;};
342    void   setGrowthThreshold(float f){growthThreshold=f;};
343    bool   getFlagUserGrowthThreshold(){return flagUserGrowthThreshold;};
344    void   setFlagUserGrowthThreshold(bool b){flagUserGrowthThreshold=b;};
345    bool   getFlagOptimisedGrower(){return flagOptimisedGrower;};
346    void   setFlagOptimisedGrower(bool b){flagOptimisedGrower=b;};
347    bool   getFlagClobberPrevious(){return flagClobberPrevious;};
348    void   setFlagClobberPrevious(bool b){flagClobberPrevious=b;};
349    int    getMaxGrowingIterations(){return maxGrowingIter;};
350    void   setMaxGrowingIterations(int i){maxGrowingIter=i;};   
351      //         
352    bool   getFlagFDR(){return flagFDR;};
353    void   setFlagFDR(bool flag){flagFDR=flag;};
354    float  getAlpha(){return alphaFDR;};
355    void   setAlpha(float a){alphaFDR=a;};
356    int    getFDRnumCorChan(){return FDRnumCorChan;};
357    void   setFDRnumCorChan(int i){FDRnumCorChan=i;};
358    //
359    bool   getFlagBaseline(){return flagBaseline;};
360    void   setFlagBaseline(bool flag){flagBaseline = flag;};
361      std::string getBaselineType(){return baselineType;};
362      void setBaselineType(std::string s){baselineType = s;};
363      unsigned int getBaselineBoxWidth(){return baselineBoxWidth;};
364      void setBaselineBoxWidth(unsigned int i){baselineBoxWidth = i;};
365    //
366    bool   getFlagStatSec(){return flagStatSec;};
367    void   setFlagStatSec(bool flag){flagStatSec=flag;};
368    std::string getStatSec(){return statSec.getSection();};
369    void   setStatSec(std::string range){statSec.setSection(range);};
370    Section &statsec(){Section &rsection = statSec; return rsection;};
371    bool   getFlagRobustStats(){return flagRobustStats;};
372    void   setFlagRobustStats(bool flag){flagRobustStats=flag;};
373    float  getCut(){return snrCut;};
374    void   setCut(float c){snrCut=c;};
375    float  getThreshold(){return threshold;};
376    void   setThreshold(float f){threshold=f;};
377    bool   getFlagUserThreshold(){return flagUserThreshold;};
378    void   setFlagUserThreshold(bool b){flagUserThreshold=b;};
379    //   
380    bool   getFlagSmooth(){return flagSmooth;};
381    void   setFlagSmooth(bool b){flagSmooth=b;};
382    std::string getSmoothType(){return smoothType;};
383    void   setSmoothType(std::string s){smoothType=s;};
384    int    getHanningWidth(){return hanningWidth;};
385    void   setHanningWidth(int f){hanningWidth=f;};
386    void   setKernMaj(float f){kernMaj=f;};
387    float  getKernMaj(){return kernMaj;};
388    void   setKernMin(float f){kernMin=f;};
389    float  getKernMin(){return kernMin;};
390    void   setKernPA(float f){kernPA=f;};
391    float  getKernPA(){return kernPA;};
392    std::string getSmoothEdgeMethod(){return smoothEdgeMethod;};
393    void   setSmoothEdgeMethod(std::string s){smoothEdgeMethod=s;}; 
394    float getSpatialSmoothCutoff(){return spatialSmoothCutoff;};
395    void setSpatialSmoothCutoff(float f){spatialSmoothCutoff=f;}; 
396    //   
397    bool   getFlagATrous(){return flagATrous;};
398    void   setFlagATrous(bool flag){flagATrous=flag;};
399    int    getReconDim(){return reconDim;};
400    void   setReconDim(int i){reconDim=i;};
401    unsigned int getMinScale(){return scaleMin;};
402    void   setMinScale(unsigned int s){scaleMin=s;};
403    unsigned int getMaxScale(){return scaleMax;};
404    void   setMaxScale(unsigned int s){scaleMax=s;};
405    float  getAtrousCut(){return snrRecon;};
406    void   setAtrousCut(float c){snrRecon=c;};
407    float  getReconConvergence(){return reconConvergence;};
408    void   setReconConvergence(float f){reconConvergence = f;};
409    int    getFilterCode(){return filterCode;};
410    void   setFilterCode(int c){filterCode=c;};
411    std::string getFilterName(){return reconFilter->getName();};
412    Filter& filter(){ Filter &rfilter = *reconFilter; return rfilter; };
413    //   
414    bool   getFlagAdjacent(){return flagAdjacent;};
415    void   setFlagAdjacent(bool flag){flagAdjacent=flag;};
416    float  getThreshS(){return threshSpatial;};
417    void   setThreshS(float t){threshSpatial=t;};
418    float  getThreshV(){return threshVelocity;};
419    void   setThreshV(float t){threshVelocity=t;};
420    unsigned int   getMinPix(){return minPix;};
421    void   setMinPix(unsigned int m){minPix=m;};
422    unsigned int getMinChannels(){return minChannels;};
423    void   setMinChannels(unsigned int n){minChannels=n;};
424    unsigned int getMinVoxels(){return minVoxels;};
425    void   setMinVoxels(unsigned int n){minVoxels=n;};
426    int   getMaxPix(){return maxPix;};
427    void   setMaxPix(int m){maxPix=m;};
428    int getMaxChannels(){return maxChannels;};
429    void   setMaxChannels(int n){maxChannels=n;};
430    int getMaxVoxels(){return maxVoxels;};
431    void   setMaxVoxels(int n){maxVoxels=n;};
432    bool   getFlagRejectBeforeMerge(){return flagRejectBeforeMerge;};
433    void   setFlagRejectBeforeMerge(bool flag){flagRejectBeforeMerge=flag;};
434    bool   getFlagTwoStageMerging(){return flagTwoStageMerging;};
435    void   setFlagTwoStageMerging(bool flag){flagTwoStageMerging=flag;};
436    //
437    std::string getSpectralMethod(){return spectralMethod;};
438    void   setSpectralMethod(std::string s){spectralMethod=s;};
439    std::string getSpectralType(){return spectralType;};
440    void   setSpectralType(std::string s){spectralType=s;};
441    float  getRestFrequency(){return restFrequency;};
442    void   setRestFrequency(float f){restFrequency=f;};
443    bool    getFlagRestFrequencyUsed(){return restFrequencyUsed;};
444    void    setFlagRestFrequencyUsed(bool b){restFrequencyUsed=b;};
445    std::string getSpectralUnits(){return spectralUnits;};
446    void   setSpectralUnits(std::string s){spectralUnits=s;};
447    std::string getPixelCentre(){return pixelCentre;};
448    void   setPixelCentre(std::string s){pixelCentre=s;};
449    std::string getSortingParam(){return sortingParam;};
450    void   setSortingParam(std::string s){sortingParam=s;};
451    bool   drawBorders(){return borders;};
452    void   setDrawBorders(bool f){borders=f;};
453    bool   drawBlankEdge(){return blankEdge;};
454    void   setDrawBlankEdge(bool f){blankEdge=f;};
455
456    /// @brief Are we in verbose mode?
457    bool   isVerbose(){return verbose;};
458    void   setVerbosity(bool f){verbose=f;};
459 
460    /// @brief Set the comment characters
461    void setCommentString(std::string comment){commentStr = comment;};
462    std::string commentString(){return commentStr;};
463
464  private:
465    // Input files
466    std::string imageFile;       ///< The image to be analysed.
467    bool        flagSubsection;  ///< Whether we just want a subsection of the image
468    Section pixelSec;            ///< The Section object storing the pixel subsection information.
469    bool        flagReconExists; ///< The reconstructed array is in a FITS file on disk.
470    std::string reconFile;       ///< The FITS file containing the reconstructed array.
471    bool        flagSmoothExists;///< The smoothed array is in a FITS file.
472    std::string smoothFile;      ///< The FITS file containing the smoothed array.
473
474    bool       usePrevious;      ///< Whether to read the detections from a previously-created log file
475    std::string objectList;      ///< List of objects to re-plot
476    std::vector<int> objectListVector; ///<< Vector list of the objects requested
477
478    // Output files
479    bool        flagLog;         ///< Should we do the intermediate logging?
480    std::string logFile;         ///< Where the intermediate logging goes.
481    std::string outFile;         ///< Where the final results get put.
482    bool        flagSeparateHeader;///< Should the header information(parameters & statistics) be written to a separate file to the table ofresults?
483    std::string headerFile;      ///< Where the header information to go with the results table should be written.
484    bool        flagWriteBinaryCatalogue; ///< Whether to write the catalogue to a binary file
485    std::string binaryCatalogue; ///< The binary file holding the catalogue of detected pixels.
486    bool        flagPlotSpectra; ///< Should we plot the spectrum of each detection?
487    std::string spectraFile;     ///< Where the spectra are displayed
488    bool        flagPlotIndividualSpectra; ///< Should the sources be plotted with spectra in individual files?
489    bool        flagTextSpectra; ///< Should a text file with all spectra be written?
490    std::string spectraTextFile; ///< Where the text spectra are written.
491    bool        flagOutputBaseline;  ///< Should the cube of baseline values be written to a FITS file?
492    std::string fileOutputBaseline;  ///< The name of the baseline FITS file
493    bool        flagOutputMomentMap;  ///< Should the moment map image be written to a FITS file?
494    std::string fileOutputMomentMap;  ///< The name of the moment map FITS file
495    bool        flagOutputMomentMask;  ///< Should the moment-0 mask be written to a FITS file?
496    std::string fileOutputMomentMask;  ///< The name of the moment-0 mask FITS file
497    bool        flagOutputMask;  ///< Should the mask image be written?
498    std::string fileOutputMask;  ///< The name of the mask image.
499    bool        flagMaskWithObjectNum;///< Should the mask values be labeled with the object ID (or just 1)?
500    bool        flagOutputSmooth;///< Should the smoothed cube be written?
501    std::string fileOutputSmooth;///< The name of the smoothed cube file
502    bool        flagOutputRecon; ///< Should the reconstructed cube be written to a FITS file?
503    std::string fileOutputRecon; ///< The name of the reconstructed cube file
504    bool        flagOutputResid; ///< Should the residuals from the reconstruction be written to a FITS file?
505    std::string fileOutputResid; ///< The name of the residual cube file
506    bool        flagVOT;         ///< Should we save results in VOTable format?
507    std::string votFile;         ///< Where the VOTable goes.
508    bool        flagKarma;       ///< Should we save results in Karma annotation format?
509    std::string karmaFile;       ///< Where the Karma annotation file goes.
510    bool        flagCasa;        ///< Should we save results in CASA region format?
511    std::string casaFile;        ///< Where the CASA region file goes.
512    bool        flagDS9;         ///< Should we save results in DS9 annotation format?
513    std::string ds9File;         ///< Where the DS9 annotation file goes.
514    std::string annotationType;  ///< Should the annoations be circles or borders?
515    bool        flagMaps;        ///< Should we produce detection and moment maps in postscript form?
516    std::string detectionMap;    ///< The name of the detection map (postscript file).
517    std::string momentMap;       ///< The name of the 0th moment map (ps file).
518    bool        flagXOutput;     ///< Should there be an xwindows output of the detection map?
519    int         precFlux;        ///< The desired precision for flux values.
520    int         precVel;         ///< The desired precision for velocity/frequency values.
521    int         precSNR;         ///< The desired precision for the SNR values.
522
523    // Cube related parameters
524    bool        flagNegative;    ///< Are we going to search for negative features?
525    bool        flagBlankPix;    ///< A flag that indicates whether there are pixels defined as BLANK and whether we need to remove & ignore them in processing.
526    float       blankPixValue;   ///< Pixel value that is considered BLANK.
527    int         blankKeyword;    ///< The FITS header keyword BLANK.
528    float       bscaleKeyword;   ///< The FITS header keyword BSCALE.
529    float       bzeroKeyword;    ///< The FITS header keyword BZERO.
530    std::string newFluxUnits;    ///< The user-requested flux units, to replace BUNIT.
531
532    // Milky-Way parameters
533    std::string flaggedChannelList; ///< List of channels to be flagged (ignored).
534    std::vector <int> flaggedChannels; ///< The flagged channels listed individually
535    std::vector<bool> flaggedChannelMask; ///< Whether a given channel is flagged, up to the maximum listed flagged channel
536
537    // Trim-related
538    bool        flagTrim;        ///< Does the user want the cube trimmed?
539    bool        hasBeenTrimmed;  ///< Has the cube been trimmed of excess BLANKs around the edge?
540    size_t      borderLeft;      ///< The number of BLANK pixels trimmed from the left of the cube;
541    size_t      borderRight;     ///< The number trimmed from the Right of the cube;
542    size_t      borderBottom;    ///< The number trimmed from the Bottom of the cube;
543    size_t      borderTop;       ///< The number trimmed from the Top of the cube;
544
545    // Subsection offsets
546    long       *offsets;         ///< The array of offsets for each FITS axis.
547    long        sizeOffsets;     ///< The size of the offsets array.
548    long        xSubOffset;      ///< The subsection's x-axis offset
549    long        ySubOffset;      ///< The subsection's y-axis offset
550    long        zSubOffset;      ///< The subsection's z-axis offset
551
552    // Baseline related
553    bool        flagBaseline;    ///< Whether to do baseline subtraction before reconstruction and/or searching.
554      std::string baselineType;  ///< Which baselining method to use
555      unsigned int baselineBoxWidth; ///< For the median baselining method, the full width of the sliding box.
556
557    // Detection-related
558    float       areaBeam;        ///< Size (area) of the beam in pixels.
559    float       fwhmBeam;        ///< FWHM of the beam in pixels.
560    DuchampBeam beamAsUsed;      ///< A copy of the beam as used in FitsHeader - only used here for output
561    std::string searchType;      ///< How to do the search: by channel map or by spectrum
562
563    // Object growth
564    bool        flagGrowth;      ///< Are we growing objects once they are found?
565    float       growthCut;       ///< The SNR that we are growing objects down to.
566    bool        flagUserGrowthThreshold; ///< Whether the user has manually defined a growth threshold
567    float       growthThreshold; ///< The threshold for growing objects down to
568    bool        flagOptimisedGrower; ///< Whether to use the optimised growing algorithm
569    bool        flagClobberPrevious; ///< Whether, when using the optimised grower, to remove the previous object mask first
570    int         maxGrowingIter;  ///< The maximum number of iterations to use in the optimised grower
571
572    // FDR analysis
573    bool        flagFDR;         ///< Should the FDR method be used?
574    float       alphaFDR;        ///< Alpha value for FDR detection algorithm
575    int         FDRnumCorChan;   ///< Number of correlated channels, used in the FDR algorithm
576
577    // Basic detection
578    bool        flagStatSec;     ///< Whether we just want to use a subsection of the image to calculate the statistics.
579    Section     statSec;         ///< The Section object storing the statistics subsection information.
580    bool        flagRobustStats; ///< Whether to use robust statistics.
581    float       snrCut;          ///< How many sigma above mean is a detection when sigma-clipping
582    float       threshold;       ///< What the threshold is (when sigma-clipping).
583    bool        flagUserThreshold;///< Whether the user has defined a threshold of their own.
584
585    // Smoothing of the cube
586    bool        flagSmooth;      ///< Should the cube be smoothed before searching?
587    std::string smoothType;      ///< The type of smoothing to be done.
588    int         hanningWidth;    ///< Width for hanning smoothing.
589    float       kernMaj;         ///< Semi-Major axis of gaussian smoothing kernel
590    float       kernMin;         ///< Semi-Minor axis of gaussian smoothing kernel
591    float       kernPA;          ///< Position angle of gaussian smoothing kernel, in degrees east of north (i.e. anticlockwise).
592    std::string smoothEdgeMethod; ///< Method for dealing with the edges when 2D smoothing: 'equal','truncate','scale'
593    float       spatialSmoothCutoff; ///< Cutoff value for determining kernel size
594
595    // A trous reconstruction parameters
596    bool   flagATrous;      ///< Are we using the a trous reconstruction?
597    int    reconDim;        ///< How many dimensions to use for the reconstruction?
598    unsigned int    scaleMin;        ///< Min scale used in a trous reconstruction
599    unsigned int    scaleMax;        ///< Max scale used in a trous reconstruction
600    float  snrRecon;        ///< SNR cutoff used in a trous reconstruction (only wavelet coefficients that survive this threshold are kept)
601    float  reconConvergence;///< Convergence criterion for reconstruction - maximum fractional change in residual standard deviation
602    Filter *reconFilter;     ///< The filter used for reconstructions.
603    int    filterCode;      ///< The code number for the filter to be used (saves having to parse names)
604
605    // Volume-merging parameters
606    bool   flagAdjacent;    ///< Whether to use the adjacent criterion for judging if objects are to be merged.
607    float  threshSpatial;   ///< Maximum spatial separation between objects
608    float  threshVelocity;  ///< Maximum channels separation between objects
609    unsigned int minPix;         ///< Minimum number of pixels for a detected object to be counted
610    unsigned int minChannels;     ///< Minimum no. of channels to make an object
611    unsigned int minVoxels;       ///< Minimum no. of voxels required in an object
612    int maxPix;
613    int maxChannels;
614    int maxVoxels;
615    bool   flagRejectBeforeMerge; ///< Whether to reject sources before merging
616    bool   flagTwoStageMerging;  ///< Whether to do a partial merge when the objects are found, via the mergeIntoList function.
617
618    // Input-Output related
619    std::string spectralMethod; ///< A string indicating choice of spectral plotting method: choices are "peak" (default) or "sum"
620    std::string spectralType;   ///< The requested CTYPE that the spectral axis be converted to
621    float  restFrequency;       ///< The rest frequency that should be used when converting - overrides that in the FITS file
622    bool   restFrequencyUsed;   ///< A flag indicating whether the spectral type has been converted from that in the FITS file
623    std::string spectralUnits;  ///< A string indicating what units the spectral axis should be quoted in.
624    std::string pixelCentre;    ///< A string indicating which type of centre to give the results in: "average", "centroid", or "peak"(flux).
625    std::string sortingParam;   ///< A string indicating the parameter to sort the detection list on.
626    bool   borders;             ///< Whether to draw a border around the individual pixels of a detection in the spectral display
627    bool   blankEdge;           ///< Whether to draw a border around the BLANK pixel region in the moment maps and cutout images
628    bool   verbose;             ///< Whether to use maximum verbosity -- use progress indicators in the reconstruction & merging steps.
629
630    std::string commentStr; ///< Any comment characters etc that need to be prepended to any output via the << operator.
631
632  };
633
634  //===========================================================================
635
636
637}
638#endif
Note: See TracBrowser for help on using the repository browser.