[1757] | 1 | //#---------------------------------------------------------------------------
|
---|
| 2 | //# ASTEFXReader.h: Class to read ASTE-FX data.
|
---|
| 3 | //#---------------------------------------------------------------------------
|
---|
| 4 | //# Copyright (C) 2000-2006
|
---|
| 5 | //# Associated Universities, Inc. Washington DC, USA.
|
---|
| 6 | //#
|
---|
| 7 | //# This library is free software; you can redistribute it and/or modify it
|
---|
| 8 | //# under the terms of the GNU Library General Public License as published by
|
---|
| 9 | //# the Free Software Foundation; either version 2 of the License, or (at your
|
---|
| 10 | //# option) any later version.
|
---|
| 11 | //#
|
---|
| 12 | //# This library is distributed in the hope that it will be useful, but WITHOUT
|
---|
| 13 | //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
| 14 | //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
---|
| 15 | //# License for more details.
|
---|
| 16 | //#
|
---|
| 17 | //# You should have received a copy of the GNU Library General Public License
|
---|
| 18 | //# along with this library; if not, write to the Free Software Foundation,
|
---|
| 19 | //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
| 20 | //#
|
---|
| 21 | //# Correspondence concerning AIPS++ should be addressed as follows:
|
---|
| 22 | //# Internet email: aips2-request@nrao.edu.
|
---|
| 23 | //# Postal address: AIPS++ Project Office
|
---|
| 24 | //# National Radio Astronomy Observatory
|
---|
| 25 | //# 520 Edgemont Road
|
---|
| 26 | //# Charlottesville, VA 22903-2475 USA
|
---|
| 27 | //#
|
---|
| 28 | //# $Id$
|
---|
| 29 | //#---------------------------------------------------------------------------
|
---|
| 30 | //# Original: 2008/10/30, Takeshi Nakazato, NAOJ
|
---|
| 31 | //#---------------------------------------------------------------------------
|
---|
| 32 |
|
---|
| 33 | #ifndef ASTE_FX_READER_H
|
---|
| 34 | #define ASTE_FX_READER_H
|
---|
| 35 |
|
---|
| 36 | #include <casa/aips.h>
|
---|
| 37 | #include <casa/Arrays/Matrix.h>
|
---|
| 38 | #include <casa/Arrays/Vector.h>
|
---|
| 39 | #include <casa/BasicSL/Complex.h>
|
---|
| 40 |
|
---|
| 41 | #include <string>
|
---|
| 42 |
|
---|
| 43 | using namespace std ;
|
---|
| 44 |
|
---|
| 45 | // <summary>
|
---|
| 46 | // Class to read ASTE-FX data.
|
---|
| 47 | // </summary>
|
---|
| 48 | //
|
---|
| 49 | // <prerequisite>
|
---|
| 50 | // <li> <linkto class=NROReader>NROReader</linkto>
|
---|
| 51 | // <li> <linkto class=NRODataRecord>NRODataset</linkto>
|
---|
| 52 | // <li> <linkto class=ASTEFXDataset>ASTEFXDataset</linkto>
|
---|
| 53 | // </prerequisite>
|
---|
| 54 | //
|
---|
| 55 | // <reviewed reviewer="" date="" tests="" demos="">
|
---|
| 56 | // </reviewed>
|
---|
| 57 | //
|
---|
| 58 | // <etymology>
|
---|
| 59 | // This class is a reader class for ASTE OTF data. This is specialized for FX type
|
---|
| 60 | // spectrometer data. The class uses
|
---|
| 61 | // <linkto class=ASTEFXDataset>ASTEFXDataset</linkto> object to access data.
|
---|
| 62 | // </etymology>
|
---|
| 63 | //
|
---|
| 64 | // <synopsis>
|
---|
| 65 | // Reader class for ASTE OTF (FX) data.
|
---|
| 66 | // </synopsis>
|
---|
| 67 | //
|
---|
| 68 |
|
---|
| 69 | #include <casa/namespace.h>
|
---|
| 70 | #include <atnf/PKSIO/ASTEReader.h>
|
---|
| 71 |
|
---|
| 72 | class ASTEFXReader : public ASTEReader
|
---|
| 73 | {
|
---|
| 74 | public:
|
---|
| 75 | // Constructor
|
---|
| 76 | ASTEFXReader( string name ) ;
|
---|
| 77 |
|
---|
| 78 | // Destructor.
|
---|
| 79 | ~ASTEFXReader() ;
|
---|
| 80 |
|
---|
| 81 | // Read data header
|
---|
| 82 | virtual int read() ;
|
---|
| 83 | };
|
---|
| 84 |
|
---|
| 85 | #endif /* ASTE_FX_READER_H */
|
---|