source: trunk/src/fitsHeader.hh @ 1276

Last change on this file since 1276 was 1272, checked in by MatthewWhiting, 11 years ago

Changing a long to size_t, in defineWCS - this is for compatibility with other code.

File size: 8.7 KB
RevLine 
[299]1// -----------------------------------------------------------------------
2// fitsHeader.hh: Information about the FITS file's header.
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// -----------------------------------------------------------------------
[272]28#ifndef FITSHEADER_H
29#define FITSHEADER_H
30
31#include <string>
[394]32#include <wcslib/wcs.h>
[377]33#include <math.h>
[708]34#include <duchamp/duchamp.hh>
[788]35#include <duchamp/FitsIO/DuchampBeam.hh>
[272]36
[378]37namespace duchamp
[272]38{
39
[378]40  class Param;
[272]41
[528]42  ///
43  /// @brief Class to store FITS header information.
44  ///
45  /// @details  Stores information from a FITS header, including WCS information
46  ///    in the form of a wcsprm struct, as well as various keywords.
47  ///
[378]48  class FitsHeader
49  {
[272]50
[378]51  public:
52    FitsHeader();
53    virtual ~FitsHeader();
54    FitsHeader(const FitsHeader& h);
55    FitsHeader& operator= (const FitsHeader& h);
[291]56
[378]57    //--------------------
58    // Functions in param.cc
59    //
[528]60    /// @brief Assign correct WCS parameters. 
[378]61    void    setWCS(struct wcsprm *w);
[272]62
[528]63    /// @brief Return the WCS parameters in a WCSLIB wcsprm struct.
[378]64    struct wcsprm *getWCS();
[272]65
[528]66    /// @brief Provides a reference to the WCS parameters
[378]67    struct wcsprm& WCS(){ struct wcsprm &rwcs = *wcs; return rwcs; };
[272]68
[378]69    // front ends to WCS functions
[528]70    /// @brief Convert pixel coords to world coords for a single point.
[378]71    int     wcsToPix(const double *world, double *pix);
[272]72
[528]73    /// @brief Convert pixel coords to world coords for many points.
[378]74    int     wcsToPix(const double *world, double *pix, const int npts);
[272]75
[528]76    /// @brief Convert world coords to pixel coords for a single point.
[378]77    int     pixToWCS(const double *pix, double *world);
[272]78
[528]79    /// @brief Convert world coords to pixel coords for many points.
[378]80    int     pixToWCS(const double *pix, double *world, const int npts);
[272]81
[528]82    /// @brief Convert a (x,y,z) position to a velocity.
[378]83    double  pixToVel(double &x, double &y, double &z);
[272]84
[528]85    /// @brief Convert a set of  (x,y,z) positions to a set of velocities.
[378]86    double *pixToVel(double &x, double &y, double *zarray, int size);
[272]87
[528]88    /// @brief Convert a spectral coordinate to a velocity coordinate.
[378]89    double  specToVel(const double &z);
90
[528]91    /// @brief Convert a velocity coordinate to a spectral coordinate.
[378]92    double  velToSpec(const float &vel);
93
[528]94    /// @brief Get an IAU-style name for an equatorial or galactic coordinates.
[378]95    std::string  getIAUName(double ra, double dec);
96
[528]97    /// @brief Correct the units for the spectral axis
[949]98    void    fixSpectralUnits(std::string units);
[434]99   
[528]100    /// @brief Define the units for integrated flux
[434]101    void    setIntFluxUnits();
102
[378]103    //--------------------
104    // Functions in FitsIO/headerIO.cc
105    //
[528]106    /// @brief Read all header info.
[698]107    OUTCOME     readHeaderInfo(std::string fname, Param &par);
[971]108    OUTCOME     readHeaderInfo(Param &par);
109    OUTCOME     readHeaderInfo(fitsfile *fptr, Param &par);
[272]110
[528]111    /// @brief Read BUNIT keyword
[970]112    // OUTCOME     readBUNIT(std::string fname);
113    OUTCOME     readBUNIT(fitsfile *fptr);
[272]114
[528]115    /// @brief Read BLANK & related keywords
[970]116    // OUTCOME     readBLANKinfo(std::string fname, Param &par);
117    OUTCOME     readBLANKinfo(fitsfile *fptr, Param &par);
[272]118
[528]119    /// @brief Read beam-related keywords
[970]120    // OUTCOME     readBeamInfo(std::string fname, Param &par);
121    OUTCOME     readBeamInfo(fitsfile *fptr, Param &par);
[272]122 
[378]123    //--------------------
124    // Function in FitsIO/wcsIO.cc
125    //
[528]126    /// @brief Read the WCS information from a file.
[698]127    OUTCOME     defineWCS(std::string fname, Param &par);
[971]128    OUTCOME     defineWCS(Param &par);
129    OUTCOME     defineWCS(fitsfile *fptr, Param &par);
[1272]130    OUTCOME     defineWCS(wcsprm *theWCS, int nWCS, size_t *dimAxes, Param &par);
[272]131
[378]132    //--------------------
133    // Basic inline accessor functions
134    //
[971]135    fitsfile *FPTR(){return fptr;};
136    int     openFITS(std::string name);
137    int     closeFITS();
[528]138    /// @brief Is the WCS good enough to be used?
[378]139    bool    isWCS(){return wcsIsGood;};
[528]140    /// @brief Is the spectral axis OK to be used?
[378]141    bool    isSpecOK(){return (wcs->spec >= 0);};
[494]142    bool    canUseThirdAxis(){return ((wcs->spec >= 0)||(wcs->naxis>2));};
[513]143    void    set2D(bool b){flag2D = b;};
144    bool    is2D(){return flag2D;};
[378]145    int     getNWCS(){return nwcs;};
146    void    setNWCS(int i){nwcs=i;};
[494]147    int     getNumAxes(){if(wcs->flag==-1) return 0; else return wcs->naxis;};
148    void    setNumAxes(int i){wcs->naxis=i;};
[378]149    std::string  getSpectralUnits(){return spectralUnits;};
150    void    setSpectralUnits(std::string s){spectralUnits=s;};
[947]151    std::string  getSpectralType(){return spectralType;};
152    void    setSpectralType(std::string s){spectralType=s;};
[378]153    std::string  getSpectralDescription(){return spectralDescription;};
154    void    setSpectralDescription(std::string s){spectralDescription=s;};
[757]155    std::string  getOrigFluxUnits(){return originalFluxUnits;};
156    void    setOrigFluxUnits(std::string s){originalFluxUnits=s;};
[378]157    std::string  getFluxUnits(){return fluxUnits;};
158    void    setFluxUnits(std::string s){fluxUnits=s;};
159    std::string  getIntFluxUnits(){return intFluxUnits;};
160    void    setIntFluxUnits(std::string s){intFluxUnits=s;};
[788]161    DuchampBeam getBeam(){return itsBeam;};
162    DuchampBeam& beam(){DuchampBeam& rbeam=itsBeam; return rbeam;};
163    void    setBeam(DuchampBeam &b){itsBeam=b;};
[378]164    int     getBlankKeyword(){return blankKeyword;};
165    void    setBlankKeyword(int f){blankKeyword=f;};
166    float   getBzeroKeyword(){return bzeroKeyword;};
167    void    setBzeroKeyword(float f){bzeroKeyword=f;};
168    float   getBscaleKeyword(){return bscaleKeyword;};
169    void    setBscaleKeyword(float f){bscaleKeyword=f;};
[963]170    std::string lngtype();
171    std::string lattype();
[290]172
[1133]173    /// @brief Return the average pixel scale (eg deg/pix) of the two spatial axes.
[378]174    float   getAvPixScale(){
175      return sqrt( fabs ( (wcs->pc[0]*wcs->cdelt[0])*
176                          (wcs->pc[wcs->naxis+1]*wcs->cdelt[1])));
177    };
178
[1133]179    float getShapeScale();
180    std::string getShapeUnits();
181
[378]182    bool    needBeamSize();
183
184  private:
[971]185    fitsfile      *fptr;                ///< A pointer to the FITS file that can be used by the cftisio library.
[528]186    struct wcsprm *wcs;                 ///< The WCS parameters for the cube in a struct from the wcslib library.
187    int            nwcs;                ///< The number of WCS parameters
188    bool           wcsIsGood;           ///< A flag indicating whether there is a valid WCS present.
189    bool           flag2D;              ///< Is the image only a 2D one (leaving out redundant dimensions of size 1)?
190    std::string    spectralUnits;       ///< The units of the spectral dimension
[947]191    std::string    spectralType;        ///< The spectral type - first 4 letters of the WCS ctype code. Used for the results output.
[528]192    std::string    spectralDescription; ///< The description of the spectral dimension (Frequency, Velocity, ...)
[757]193    std::string    originalFluxUnits;   ///< The units of pixel flux in the original image
194    std::string    fluxUnits;           ///< The units of pixel flux as used (either from image or from parameter set)
[528]195    std::string    intFluxUnits;        ///< The units of integrated flux (from header)
[788]196    DuchampBeam    itsBeam;             ///< The beam information
[528]197    int            blankKeyword;        ///< The FITS header keyword BLANK.
198    float          bzeroKeyword;        ///< The FITS header keyword BZERO.
199    float          bscaleKeyword;       ///< The FITS header keyword BSCALE.
200    double         scale;               ///< scale parameter for converting spectral coords
201    double         offset;              ///< offset parameter for converting spectral coords
202    double         power;               ///< power parameter for converting spectral coords
[272]203  };
204
[378]205}
[272]206
207#endif // FITSHEADER_H
Note: See TracBrowser for help on using the repository browser.