[1325] | 1 | //#---------------------------------------------------------------------------
|
---|
[1399] | 2 | //# PKSSDwriter.h: Class to write Parkes multibeam data to an SDFITS file.
|
---|
[1325] | 3 | //#---------------------------------------------------------------------------
|
---|
[1399] | 4 | //# Copyright (C) 2000-2007
|
---|
[1325] | 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 | //#
|
---|
[1452] | 28 | //# $Id: PKSSDwriter.h,v 19.16 2008-11-17 06:41:48 cal103 Exp $
|
---|
[1325] | 29 | //# Original: 2000/07/21, Mark Calabretta, ATNF
|
---|
| 30 | //#---------------------------------------------------------------------------
|
---|
| 31 |
|
---|
| 32 | #ifndef ATNF_PKSSDWRITER_H
|
---|
| 33 | #define ATNF_PKSSDWRITER_H
|
---|
| 34 |
|
---|
| 35 | #include <atnf/PKSIO/PKSwriter.h>
|
---|
[1452] | 36 | #include <atnf/PKSIO/PKSrecord.h>
|
---|
[1325] | 37 | #include <atnf/PKSIO/SDFITSwriter.h>
|
---|
| 38 |
|
---|
| 39 | #include <casa/aips.h>
|
---|
[1452] | 40 | #include <casa/stdio.h>
|
---|
[1325] | 41 | #include <casa/Arrays/Vector.h>
|
---|
| 42 | #include <casa/Arrays/Matrix.h>
|
---|
| 43 | #include <casa/BasicSL/Complex.h>
|
---|
| 44 | #include <casa/BasicSL/String.h>
|
---|
| 45 |
|
---|
[1452] | 46 | #include <casa/namespace.h>
|
---|
| 47 |
|
---|
[1325] | 48 | // <summary>
|
---|
| 49 | // Class to write Parkes multibeam data to an SDFITS file.
|
---|
| 50 | // </summary>
|
---|
| 51 |
|
---|
| 52 | class PKSSDwriter : public PKSwriter
|
---|
| 53 | {
|
---|
| 54 | public:
|
---|
| 55 | // Default constructor.
|
---|
| 56 | PKSSDwriter();
|
---|
| 57 |
|
---|
| 58 | // Destructor.
|
---|
| 59 | virtual ~PKSSDwriter();
|
---|
| 60 |
|
---|
[1452] | 61 | // Set message disposition.
|
---|
| 62 | virtual Int setMsg(
|
---|
| 63 | FILE *fd = 0x0);
|
---|
| 64 |
|
---|
[1325] | 65 | // Create the SDFITS file and write static data.
|
---|
| 66 | virtual Int create(
|
---|
| 67 | const String sdName,
|
---|
| 68 | const String observer,
|
---|
| 69 | const String project,
|
---|
| 70 | const String antName,
|
---|
| 71 | const Vector<Double> antPosition,
|
---|
| 72 | const String obsMode,
|
---|
[1399] | 73 | const String bunit,
|
---|
[1325] | 74 | const Float equinox,
|
---|
| 75 | const String dopplerFrame,
|
---|
| 76 | const Vector<uInt> nChan,
|
---|
| 77 | const Vector<uInt> nPol,
|
---|
| 78 | const Vector<Bool> haveXPol,
|
---|
| 79 | const Bool haveBase);
|
---|
| 80 |
|
---|
| 81 | // Write the next data record.
|
---|
| 82 | virtual Int write(
|
---|
[1452] | 83 | const PKSrecord &pksrec);
|
---|
[1325] | 84 |
|
---|
[1399] | 85 | // Write a history record.
|
---|
| 86 | virtual Int history(const String text);
|
---|
| 87 | virtual Int history(const char *text);
|
---|
| 88 |
|
---|
[1325] | 89 | // Close the SDFITS file.
|
---|
| 90 | virtual void close();
|
---|
| 91 |
|
---|
| 92 | private:
|
---|
| 93 | // Masks declaration in parent class.
|
---|
| 94 | Vector<uInt> cHaveXPol;
|
---|
| 95 |
|
---|
| 96 | SDFITSwriter cSDwriter;
|
---|
| 97 | };
|
---|
| 98 |
|
---|
| 99 | #endif
|
---|