casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
NRO45FITSReader.h
Go to the documentation of this file.
00001 //#---------------------------------------------------------------------------
00002 //# NRO45FITSReader.h: Class to read NRO 45m FITS data.
00003 //#---------------------------------------------------------------------------
00004 //# Copyright (C) 2000-2006
00005 //# Associated Universities, Inc. Washington DC, USA.
00006 //#
00007 //# This library is free software; you can redistribute it and/or modify it
00008 //# under the terms of the GNU Library General Public License as published by
00009 //# the Free Software Foundation; either version 2 of the License, or (at your
00010 //# option) any later version.
00011 //#
00012 //# This library is distributed in the hope that it will be useful, but WITHOUT
00013 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00014 //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
00015 //# License for more details.
00016 //#
00017 //# You should have received a copy of the GNU Library General Public License
00018 //# along with this library; if not, write to the Free Software Foundation,
00019 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
00020 //#
00021 //# Correspondence concerning AIPS++ should be addressed as follows:
00022 //#        Internet email: aips2-request@nrao.edu.
00023 //#        Postal address: AIPS++ Project Office
00024 //#                        National Radio Astronomy Observatory
00025 //#                        520 Edgemont Road
00026 //#                        Charlottesville, VA 22903-2475 USA
00027 //#
00028 //# $Id$
00029 //#---------------------------------------------------------------------------
00030 //# Original: 2009/02/26, Takeshi Nakazato, NAOJ
00031 //#---------------------------------------------------------------------------
00032 
00033 #ifndef NRO45_FITS_READER_H
00034 #define NRO45_FITS_READER_H
00035 
00036 #include <casa/aips.h>
00037 #include <casa/Arrays/Matrix.h>
00038 #include <casa/Arrays/Vector.h>
00039 #include <casa/BasicSL/Complex.h>
00040 #include <casa/BasicSL/String.h>
00041 
00042 #include <casa/namespace.h>
00043 #include <atnf/PKSIO/NRO45Reader.h>
00044 
00045 #include <string>
00046 
00047 using namespace std ;
00048 
00049 // <summary>
00050 // Class to read NRO 45m FITS data.
00051 // </summary>
00052 //
00053 // <prerequisite>
00054 //   <li> <linkto class=NROReader>NROReader</linkto>
00055 //   <li> <linkto class=NRODataRecord>NRODataset</linkto>
00056 //   <li> <linkto class=NROFITSDataset>NROFITSDataset</linkto>
00057 // </prerequisite>
00058 //
00059 // <reviewed reviewer="" date="" tests="" demos="">
00060 // </reviewed>
00061 //
00062 // <etymology>
00063 // This class is a reader class for NRO 45m telescope. This is specialized class 
00064 // for data obtained by pointing observation (non-OTF observations) that outputs 
00065 // data in NRO FITS format. The class uses 
00066 // <linkto class=NROFITSDataset>NROFITSDataset</linkto> object to access data. 
00067 // </etymology>
00068 //
00069 // <synopsis>
00070 // Reader class for NRO 45m FITS data.
00071 // </synopsis>
00072 //
00073 
00074 class NRO45FITSReader : public NRO45Reader
00075 {
00076  public:
00077   // Constructor 
00078   NRO45FITSReader( string name ) ;
00079 
00080   // Destructor.
00081   ~NRO45FITSReader() ;
00082 
00083   // Read data header
00084   virtual int read() ;
00085 };
00086 
00087 #endif /* NRO45_FITS_READER_H */