[1325] | 1 | //#---------------------------------------------------------------------------
|
---|
[1399] | 2 | //# PKSSDwriter.h: Class to write Parkes multibeam data to an SDFITS file.
|
---|
[1325] | 3 | //#---------------------------------------------------------------------------
|
---|
[1720] | 4 | //# livedata - processing pipeline for single-dish, multibeam spectral data.
|
---|
| 5 | //# Copyright (C) 2000-2009, Australia Telescope National Facility, CSIRO
|
---|
[1325] | 6 | //#
|
---|
[1720] | 7 | //# This file is part of livedata.
|
---|
[1325] | 8 | //#
|
---|
[1720] | 9 | //# livedata is free software: you can redistribute it and/or modify it under
|
---|
| 10 | //# the terms of the GNU General Public License as published by the Free
|
---|
| 11 | //# Software Foundation, either version 3 of the License, or (at your option)
|
---|
| 12 | //# any later version.
|
---|
| 13 | //#
|
---|
| 14 | //# livedata is distributed in the hope that it will be useful, but WITHOUT
|
---|
[1325] | 15 | //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
[1720] | 16 | //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
---|
| 17 | //# more details.
|
---|
[1325] | 18 | //#
|
---|
[1720] | 19 | //# You should have received a copy of the GNU General Public License along
|
---|
| 20 | //# with livedata. If not, see <http://www.gnu.org/licenses/>.
|
---|
[1325] | 21 | //#
|
---|
[1720] | 22 | //# Correspondence concerning livedata may be directed to:
|
---|
| 23 | //# Internet email: mcalabre@atnf.csiro.au
|
---|
| 24 | //# Postal address: Dr. Mark Calabretta
|
---|
| 25 | //# Australia Telescope National Facility, CSIRO
|
---|
| 26 | //# PO Box 76
|
---|
| 27 | //# Epping NSW 1710
|
---|
| 28 | //# AUSTRALIA
|
---|
[1325] | 29 | //#
|
---|
[1720] | 30 | //# http://www.atnf.csiro.au/computing/software/livedata.html
|
---|
| 31 | //# $Id: PKSSDwriter.h,v 19.17 2009-09-29 07:33:38 cal103 Exp $
|
---|
[1325] | 32 | //# Original: 2000/07/21, Mark Calabretta, ATNF
|
---|
| 33 | //#---------------------------------------------------------------------------
|
---|
| 34 |
|
---|
| 35 | #ifndef ATNF_PKSSDWRITER_H
|
---|
| 36 | #define ATNF_PKSSDWRITER_H
|
---|
| 37 |
|
---|
| 38 | #include <atnf/PKSIO/PKSwriter.h>
|
---|
[1452] | 39 | #include <atnf/PKSIO/PKSrecord.h>
|
---|
[1325] | 40 | #include <atnf/PKSIO/SDFITSwriter.h>
|
---|
| 41 |
|
---|
| 42 | #include <casa/aips.h>
|
---|
[1452] | 43 | #include <casa/stdio.h>
|
---|
[1325] | 44 | #include <casa/Arrays/Vector.h>
|
---|
| 45 | #include <casa/Arrays/Matrix.h>
|
---|
| 46 | #include <casa/BasicSL/Complex.h>
|
---|
| 47 | #include <casa/BasicSL/String.h>
|
---|
| 48 |
|
---|
[1452] | 49 | #include <casa/namespace.h>
|
---|
| 50 |
|
---|
[1325] | 51 | // <summary>
|
---|
| 52 | // Class to write Parkes multibeam data to an SDFITS file.
|
---|
| 53 | // </summary>
|
---|
| 54 |
|
---|
| 55 | class PKSSDwriter : public PKSwriter
|
---|
| 56 | {
|
---|
| 57 | public:
|
---|
| 58 | // Default constructor.
|
---|
| 59 | PKSSDwriter();
|
---|
| 60 |
|
---|
| 61 | // Destructor.
|
---|
| 62 | virtual ~PKSSDwriter();
|
---|
| 63 |
|
---|
[1452] | 64 | // Set message disposition.
|
---|
| 65 | virtual Int setMsg(
|
---|
| 66 | FILE *fd = 0x0);
|
---|
| 67 |
|
---|
[1325] | 68 | // Create the SDFITS file and write static data.
|
---|
| 69 | virtual Int create(
|
---|
| 70 | const String sdName,
|
---|
| 71 | const String observer,
|
---|
| 72 | const String project,
|
---|
| 73 | const String antName,
|
---|
| 74 | const Vector<Double> antPosition,
|
---|
| 75 | const String obsMode,
|
---|
[1399] | 76 | const String bunit,
|
---|
[1325] | 77 | const Float equinox,
|
---|
| 78 | const String dopplerFrame,
|
---|
| 79 | const Vector<uInt> nChan,
|
---|
| 80 | const Vector<uInt> nPol,
|
---|
| 81 | const Vector<Bool> haveXPol,
|
---|
| 82 | const Bool haveBase);
|
---|
| 83 |
|
---|
| 84 | // Write the next data record.
|
---|
| 85 | virtual Int write(
|
---|
[1452] | 86 | const PKSrecord &pksrec);
|
---|
[1325] | 87 |
|
---|
[1399] | 88 | // Write a history record.
|
---|
| 89 | virtual Int history(const String text);
|
---|
| 90 | virtual Int history(const char *text);
|
---|
| 91 |
|
---|
[1325] | 92 | // Close the SDFITS file.
|
---|
| 93 | virtual void close();
|
---|
| 94 |
|
---|
| 95 | private:
|
---|
| 96 | // Masks declaration in parent class.
|
---|
| 97 | Vector<uInt> cHaveXPol;
|
---|
| 98 |
|
---|
| 99 | SDFITSwriter cSDwriter;
|
---|
| 100 | };
|
---|
| 101 |
|
---|
| 102 | #endif
|
---|