//#--------------------------------------------------------------------------- //# PKSFITSreader.h: Class to read Parkes Multibeam data from a FITS file. //#--------------------------------------------------------------------------- //# livedata - processing pipeline for single-dish, multibeam spectral data. //# Copyright (C) 2000-2009, Australia Telescope National Facility, CSIRO //# //# This file is part of livedata. //# //# livedata is free software: you can redistribute it and/or modify it under //# the terms of the GNU General Public License as published by the Free //# Software Foundation, either version 3 of the License, or (at your option) //# any later version. //# //# livedata is distributed in the hope that it will be useful, but WITHOUT //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for //# more details. //# //# You should have received a copy of the GNU General Public License along //# with livedata. If not, see . //# //# Correspondence concerning livedata may be directed to: //# Internet email: mcalabre@atnf.csiro.au //# Postal address: Dr. Mark Calabretta //# Australia Telescope National Facility, CSIRO //# PO Box 76 //# Epping NSW 1710 //# AUSTRALIA //# //# http://www.atnf.csiro.au/computing/software/livedata.html //# $Id: PKSFITSreader.h,v 19.18 2009-09-29 07:33:38 cal103 Exp $ //#--------------------------------------------------------------------------- //# This class is basically a wrapper class for reading data from either an //# MBFITS (single dish variant of RPFITS) or SDFITS file using the relevant //# lower-level classes. It translates AIPS++isms to/from basic C++. //# //# Original: 2000/08/02, Mark Calabretta, ATNF //#--------------------------------------------------------------------------- #ifndef ATNF_PKSFITSREADER_H #define ATNF_PKSFITSREADER_H #include #include #include #include #include #include #include #include #include #include // // Class to read Parkes Multibeam data from a FITS file. // class PKSFITSreader : public PKSreader { public: // Default constructor. PKSFITSreader( const String fitsType, const Int retry = 0, const Bool interpolate = True); // Destructor. virtual ~PKSFITSreader(); // Set message disposition. virtual Int setMsg( FILE *fd = 0x0); // Open the FITS file for reading. virtual Int open( const String fitsName, Vector &beams, Vector &IFs, Vector &nChan, Vector &nPol, Vector &haveXPol, Bool &haveBase, Bool &haveSpectra); // Get parameters describing the data. virtual Int getHeader( String &observer, String &project, String &antName, Vector &antPosition, String &obsType, String &bunit, Float &equinox, String &dopplerFrame, Double &mjd, Double &refFreq, Double &bandwidth); // Get frequency parameters for each IF. virtual Int getFreqInfo( Vector &startFreq, Vector &endFreq); // Set data selection criteria. Channel numbering is 1-relative, zero or // negative channel numbers are taken to be offsets from the last channel. virtual uInt select( const Vector beamSel, const Vector IFsel, const Vector startChan, const Vector endChan, const Vector refChan, const Bool getSpectra = True, const Bool getXPol = False, const Int coordSys = 0); // Find the range of the data selected in time and position. virtual Int findRange( Int &nRow, Int &nSel, Vector &timeSpan, Matrix &positions); // Read the next data record. virtual Int read(PKSrecord &pksrec); // Close the FITS file. virtual void close(); private: Int *cBeams, *cIFs; uInt cNBeam, cNIF; MBrecord cMBrec; FITSreader *cReader; Char* trim(char *string); }; #endif