casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
ASTEFXReader.h
Go to the documentation of this file.
00001 //#---------------------------------------------------------------------------
00002 //# ASTEFXReader.h: Class to read ASTE-FX 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: 2008/10/30, Takeshi Nakazato, NAOJ
00031 //#---------------------------------------------------------------------------
00032 
00033 #ifndef ASTE_FX_READER_H
00034 #define ASTE_FX_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 
00041 #include <string>
00042 
00043 using namespace std ;
00044 
00045 // <summary>
00046 // Class to read ASTE-FX data.
00047 // </summary>
00048 //
00049 // <prerequisite>
00050 //   <li> <linkto class=NROReader>NROReader</linkto>
00051 //   <li> <linkto class=NRODataRecord>NRODataset</linkto>
00052 //   <li> <linkto class=ASTEFXDataset>ASTEFXDataset</linkto>
00053 // </prerequisite>
00054 //
00055 // <reviewed reviewer="" date="" tests="" demos="">
00056 // </reviewed>
00057 //
00058 // <etymology>
00059 // This class is a reader class for ASTE OTF data. This is specialized for FX type 
00060 // spectrometer data. The class uses 
00061 // <linkto class=ASTEFXDataset>ASTEFXDataset</linkto> object to access data. 
00062 // </etymology>
00063 //
00064 // <synopsis>
00065 // Reader class for ASTE OTF (FX) data.
00066 // </synopsis>
00067 //
00068 
00069 #include <casa/namespace.h>
00070 #include <atnf/PKSIO/ASTEReader.h>
00071 
00072 class ASTEFXReader : public ASTEReader
00073 {
00074   public:
00075   // Constructor 
00076   ASTEFXReader( string name ) ;
00077 
00078   // Destructor.
00079   ~ASTEFXReader() ;
00080 
00081   // Read data header
00082   virtual int read() ;
00083 };
00084 
00085 #endif /* ASTE_FX_READER_H */