source: tags/release-1.1.9/src/Detection/detection.hh @ 1455

Last change on this file since 1455 was 681, checked in by MatthewWhiting, 14 years ago

A fix from ASKAP development. The Detection class now has a flag that records whether the WCS/flux parameters have been set. If they have, the calcObjectWCSparams functions
will not set them a second time. There's also a function to return that flag value, so that external functions can check whether parameters are set.

File size: 15.4 KB
Line 
1// -----------------------------------------------------------------------
2// detection.hh: Definition of the Detection class.
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 DETECTION_H
29#define DETECTION_H
30
31#include <iostream>
32#include <string>
33#include <vector>
34#include <duchamp/param.hh>
35#include <duchamp/PixelMap/Voxel.hh>
36#include <duchamp/PixelMap/Object3D.hh>
37#include <duchamp/Detection/columns.hh>
38
39using namespace PixelInfo;
40
41namespace duchamp
42{
43
44
45  /// Class to represent a contiguous set of detected voxels.
46  ///  This is a detected object, which features:
47  ///   a vector of voxels, average and centroid positions, total & peak fluxes,
48  ///   the possibility of WCS-calculated parameters (RA, Dec, velocity,
49  ///     related widths).
50  ///  Also many functions with which to manipulate the Detections.
51
52  class Detection : public Object3D
53  {
54  public:
55    Detection();
56    Detection(const Object3D& o);
57    Detection(const Detection& d);
58    Detection& operator= (const Detection& d);
59    virtual ~Detection(){};
60    void defaultDetection();
61    //------------------------------
62    // These are functions in detection.cc.
63    //
64
65    friend Detection operator+ (Detection lhs, Detection rhs);
66
67
68    /// @brief Test whether voxel lists match
69    bool voxelListsMatch(std::vector<PixelInfo::Voxel> voxelList);
70
71    /// @brief Test whether a voxel list contains all detected voxels
72    bool voxelListCovered(std::vector<PixelInfo::Voxel> voxelList);
73
74    /// @brief Calculate flux-related parameters of the Detection.
75    void   calcFluxes(float *fluxArray, long *dim);
76    /// @brief Calculate flux-related parameters of the Detection.
77    void   calcFluxes(std::vector<PixelInfo::Voxel> voxelList);
78
79    /// @brief Calculate parameters related to the World Coordinate System.
80    //    void   calcWCSparams(float *fluxArray, long *dim, FitsHeader &head);
81    void   calcWCSparams(FitsHeader &head);
82
83    /// @brief Calculate the integrated flux over the entire Detection.
84    void   calcIntegFlux(float *fluxArray, long *dim, FitsHeader &head);
85    /// @brief Calculate the integrated flux over the entire Detection.
86    void   calcIntegFlux(std::vector<PixelInfo::Voxel> voxelList, FitsHeader &head);
87
88    /// @brief Calculate the 20%/50% peak flux widths
89    void calcVelWidths(float *fluxArray, long *dim, FitsHeader &head);
90    /// @brief Calculate the 20%/50% peak flux widths
91    void calcVelWidths(std::vector<PixelInfo::Voxel> voxelList, FitsHeader &head);
92
93    /// @brief Set the values of the axis offsets from the cube.
94    void   setOffsets(Param &par);
95
96    /// @brief Add the offset values to the pixel locations
97    void   addOffsets(long xoff, long yoff, long zoff){Object3D::addOffsets(xoff,yoff,zoff);};
98    void   addOffsets(){
99      Object3D::addOffsets(xSubOffset,ySubOffset,zSubOffset);
100      xpeak+=xSubOffset; ypeak+=ySubOffset; zpeak+=zSubOffset;
101      xCentroid+=xSubOffset; yCentroid+=ySubOffset; zCentroid+=zSubOffset;
102    };
103
104    //
105    //---------------------------------
106    // Text Output -- all in Detection/outputDetection.cc
107    //
108    /// @brief The spectral output label that contains info on the WCS position & velocity.
109    std::string outputLabelWCS(); 
110
111    /// @brief The spectral output label that contains info on the pixel location.
112    std::string outputLabelPix();
113
114    /// @brief The spectral output label that contains info on fluxes of the Detection.
115    std::string outputLabelFluxes();
116
117    /// @brief The spectral output label that contains info on widths of the Detection.
118    std::string outputLabelWidths();
119
120    /// @brief Print all required values for the Detection to a table.
121    void printTableRow(std::ostream &stream, std::vector<Column::Col> columns, std::string tableType);
122
123    /// @brief Print a particular value for the Detection to a table.
124    void printTableEntry(std::ostream &stream, Column::Col column);
125
126    //----------------------------------
127    // For plotting routines... in Cubes/drawMomentCutout.cc
128    //
129    /// @brief Get the location of the spatial borders.
130    std::vector<int> getVertexSet();
131    //
132    /// @brief Draw spatial borders for a particular Detection.
133    void   drawBorders(int xoffset, int yoffset);
134    //
135   
136    //
137    //----------------------------------
138    // Basic functions
139    //
140
141    /// @brief Add a single voxel to the pixel list.
142    void   addPixel(long x, long y, long z){Object3D::addPixel(x,y,z);};
143   
144    /// @brief Add a single voxel to the pixel list.
145    void   addPixel(PixelInfo::Voxel point){
146      /// @brief This one adds the pixel to the pixelArray, and updates the fluxes according to the Voxel's flux information
147      Object3D::addPixel(point.getX(),point.getY(),point.getZ());
148      totalFlux += point.getF();
149      if(point.getF()>peakFlux){
150        peakFlux = point.getF();
151        xpeak = point.getX(); ypeak = point.getY(); zpeak = point.getZ();
152      }
153    };
154
155    /// @brief How many channels does the Detection have?
156    long   getNumChannels(){return Object3D::getNumDistinctZ();};
157
158    /// @brief Is there at least the acceptable minimum number of channels in the Detection? 
159    bool   hasEnoughChannels(int minNumber);
160 
161    //-----------------------------------
162    // Basic accessor functions for private members follow...
163    //
164    long        getXOffset(){return xSubOffset;};
165    void        setXOffset(long o){xSubOffset = o;};
166    long        getYOffset(){return ySubOffset;};
167    void        setYOffset(long o){ySubOffset = o;};
168    long        getZOffset(){return zSubOffset;};
169    void        setZOffset(long o){zSubOffset = o;};
170    //       
171    bool        hasParams(){return haveParams;};
172    //
173    float       getXcentre();
174    float       getYcentre();
175    float       getZcentre();
176    float       getTotalFlux(){return totalFlux;};
177    void        setTotalFlux(float f){totalFlux=f;};
178    double      getIntegFlux(){return intFlux;};
179    void        setIntegFlux(double f){intFlux=f;};
180    float       getPeakFlux(){return peakFlux;};
181    void        setPeakFlux(float f){peakFlux=f;};
182    long        getXPeak(){return xpeak;};
183    long        getYPeak(){return ypeak;};
184    long        getZPeak(){return zpeak;};
185    float       getPeakSNR(){return peakSNR;};
186    void        setPeakSNR(float f){peakSNR = f;};
187    float       getXCentroid(){return xCentroid;};
188    float       getYCentroid(){return yCentroid;};
189    float       getZCentroid(){return zCentroid;};
190    std::string getCentreType(){return centreType;};
191    void        setCentreType(std::string s){centreType=s;};
192    bool        isNegative(){return negSource;};
193    void        setNegative(bool f){negSource = f;};
194    std::string getFlagText(){return flagText;};
195    void        setFlagText(std::string s){flagText = s;};
196    void        addToFlagText(std::string s){flagText += s;};
197    //       
198    /// @brief Is the WCS good enough to be used?
199    /// \return Detection::flagWCS =  True/False
200    bool        isWCS(){return flagWCS;};
201    bool        isSpecOK(){return specOK;};
202    void        setSpecOK(bool b){specOK=b;};
203    std::string getName(){return name;};
204    void        setName(std::string s){name=s;};
205    std::string getRAs(){return raS;};
206    std::string getDecs(){return decS;};
207    float       getRA(){return ra;};
208    float       getDec(){return dec;};
209    float       getRAWidth(){return raWidth;};
210    float       getDecWidth(){return decWidth;};
211    float       getMajorAxis(){return majorAxis;};
212    float       getMinorAxis(){return minorAxis;};
213    float       getPositionAngle(){return posang;};
214    float       getVel(){return vel;};
215    float       getVelWidth(){return velWidth;};
216    float       getVelMin(){return velMin;};
217    float       getVelMax(){return velMax;};
218    float       getW20(){return w20;};
219    float       getV20Min(){return v20min;};
220    float       getV20Max(){return v20max;};
221    float       getW50(){return w50;};
222    float       getV50Min(){return v50min;};
223    float       getV50Max(){return v50max;};
224    int         getID(){return id;};
225    void        setID(int i){id = i;};
226    //
227    int         getPosPrec(){return posPrec;};
228    void        setPosPrec(int i){posPrec=i;};
229    int         getXYZPrec(){return xyzPrec;};
230    void        setXYZPrec(int i){xyzPrec=i;};
231    int         getFintPrec(){return fintPrec;};
232    void        setFintPrec(int i){fintPrec=i;};
233    int         getFpeakPrec(){return fpeakPrec;};
234    void        setFpeakPrec(int i){fpeakPrec=i;};
235    int         getVelPrec(){return velPrec;};
236    void        setVelPrec(int i){velPrec=i;};
237    int         getSNRPrec(){return snrPrec;};
238    void        setSNRPrec(int i){snrPrec=i;};
239    //
240  protected:
241    // Subsection offsets
242    long           xSubOffset;     ///< The x-offset, from subsectioned cube
243    long           ySubOffset;     ///< The y-offset, from subsectioned cube
244    long           zSubOffset;     ///< The z-offset, from subsectioned cube
245    bool           haveParams;     ///< Have the parameters been calculated?
246    // Flux related
247    float          totalFlux;      ///< sum of the fluxes of all the pixels
248    double         intFlux;        ///< integrated flux : involves integration over velocity.
249    float          peakFlux;       ///< maximum flux over all the pixels
250    long           xpeak;          ///< x-pixel location of peak flux
251    long           ypeak;          ///< y-pixel location of peak flux
252    long           zpeak;          ///< z-pixel location of peak flux
253    float          peakSNR;        ///< signal-to-noise ratio at peak
254    float          xCentroid;      ///< x-pixel location of centroid
255    float          yCentroid;      ///< y-pixel location of centroid
256    float          zCentroid;      ///< z-pixel location of centroid
257    std::string    centreType;     ///< which type of pixel centre to report: "average", "centroid", or "peak" (flux)
258    bool           negSource;      ///< is the source a negative feature?
259    std::string    flagText;       ///< any warning flags about the quality of the detection.
260    // WCS related
261    int            id;             ///< ID -- generally number in list
262    std::string    name;           ///< IAU-style name (based on position)
263    bool           flagWCS;        ///< A flag indicating whether the WCS parameters have been set.
264    std::string    raS;            ///< Right Ascension (or Longitude) of pixel centre in form 12:34:23
265    std::string    decS;           ///< Declination (or Latitude) of pixel centre, in form -12:23:34
266    float          ra;             ///< Central Right Ascension in degrees
267    float          dec;            ///< Central Declination in degrees
268    float          raWidth;        ///< Width of detection in RA direction in arcmin
269    float          decWidth;       ///< Width of detection in Dec direction in arcmin
270    float          majorAxis;      ///< Major axis length in arcmin
271    float          minorAxis;      ///< Minor axis length in arcmin
272    float          posang;         ///< Position angle of the major axis, in degrees
273    bool           specOK;         ///< Is the spectral dimension valid?
274    std::string    specUnits;      ///< Units of the spectral dimension
275    std::string    fluxUnits;      ///< Units of flux
276    std::string    intFluxUnits;   ///< Units of integrated flux
277    std::string    lngtype;        ///< Type of longitude axis (RA/GLON)
278    std::string    lattype;        ///< Type of latitude axis (DEC/GLAT)
279    float          vel;            ///< Central velocity (from zCentre)
280    float          velWidth;       ///< Full velocity width
281    float          velMin;         ///< Minimum velocity
282    float          velMax;         ///< Maximum velocity
283    float          v20min;         ///< Minimum velocity at 20% of peak flux
284    float          v20max;         ///< Maximum velocity at 20% of peak flux
285    float          w20;            ///< Velocity width at 20% of peak flux 
286    float          v50min;         ///< Minimum velocity at 50% of peak flux
287    float          v50max;         ///< Maximum velocity at 50% of peak flux
288    float          w50;            ///< Velocity width at 50% of peak flux 
289    /// @brief  The next six are the precision of values printed in the headers of the spectral plots
290    /// @name
291    /// @{
292    int            posPrec;        ///< Precision of WCS positional values
293    int            xyzPrec;        ///< Precision of pixel positional values
294    int            fintPrec;       ///< Precision of F_int/F_tot values
295    int            fpeakPrec;      ///< Precision of F_peak values
296    int            velPrec;        ///< Precision of velocity values.
297    int            snrPrec;        ///< Precision of S/N_max values.
298    /// @}
299  };
300
301  //==========================================================================
302
303  //////////////////////////////////////////////////////
304  // Prototypes for functions that use above classes
305  //////////////////////////////////////////////////////
306
307  //----------------
308  // These are in sorting.cc
309  //
310  /// @brief Sort a list of Detections by Z-pixel value.
311  void SortByZ(std::vector <Detection> &inputList);
312
313  /// @brief Sort a list of Detections by Velocity.
314  void SortByVel(std::vector <Detection> &inputList);
315
316  /// @brief Sort a list of Detections by a nominated parameter
317  void SortDetections(std::vector <Detection> &inputList, std::string parameter);
318
319  //----------------
320  // This is in areClose.cc
321  //
322  /// @brief Determine whether two objects are close according to set parameters.
323  bool areClose(Detection &object1, Detection &object2, Param &par);
324
325  //----------------
326  // This is in mergeIntoList.cc
327  //
328  /// @brief Add an object into a list, combining with adjacent objects if need be.
329  void mergeIntoList(Detection &object, std::vector <Detection> &objList,
330                     Param &par);
331
332  //----------------
333  // These are in Cubes/Merger.cc
334  //
335  /// @brief Merge a list of Detections so that all adjacent voxels are in the same Detection.
336  void mergeList(std::vector<Detection> &objList, Param &par);   
337  /// @brief Culls a list of Detections that do not meet minimum requirements.
338  void finaliseList(std::vector<Detection> &objList, Param &par);
339  /// @brief Manage both the merging and the cleaning up of the list.
340  void ObjectMerger(std::vector<Detection> &objList, Param &par);
341
342  /// @brief Print the header information to a particular table
343  void outputTableHeader(std::ostream &stream, std::vector<Column::Col> columns, std::string tableType, bool flagWCS);
344
345}
346
347#endif
Note: See TracBrowser for help on using the repository browser.