source: trunk/src/STHeader.h @ 3106

Last change on this file since 3106 was 3106, checked in by Takeshi Nakazato, 8 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1//#---------------------------------------------------------------------------
2//# STHeader.h: A container class for single dish integrations
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
5//# ATNF
6//#
7//# This program is free software; you can redistribute it and/or modify it
8//# under the terms of the GNU General Public License as published by the Free
9//# Software Foundation; either version 2 of the License, or (at your option)
10//# any later version.
11//#
12//# This program is distributed in the hope that it will be useful, but
13//# WITHOUT ANY WARRANTY; without even the implied warranty of
14//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
15//# Public License for more details.
16//#
17//# You should have received a copy of the GNU General Public License along
18//# with this program; if not, write to the Free Software Foundation, Inc.,
19//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
20//#
21//# Correspondence concerning this software should be addressed as follows:
22//#        Internet email: Malte.Marquarding@csiro.au
23//#        Postal address: Malte Marquarding,
24//#                        Australia Telescope National Facility,
25//#                        P.O. Box 76,
26//#                        Epping, NSW, 2121,
27//#                        AUSTRALIA
28//#
29//# $Id: STHeader.h 3106 2016-10-04 07:20:50Z TakeshiNakazato $
30//#---------------------------------------------------------------------------
31#ifndef STHEADER_H
32#define STHEADER_H
33
34#include <vector>
35
36#include <casa/aips.h>
37#include <casa/BasicSL/String.h>
38#include <casa/Arrays/Vector.h>
39#include <casa/Containers/Block.h>
40#include <measures/Measures/MDirection.h>
41
42namespace casacore {
43  template<class T> class Matrix;
44}
45
46namespace asap {
47
48
49struct STHeader {
50
51  bool conformant(const STHeader& other);
52  casacore::String diff( const STHeader& other );
53
54
55  casacore::Int nchan;
56  casacore::Int npol;
57  casacore::Int nif;
58  casacore::Int nbeam;
59  casacore::String observer;
60  casacore::String project;
61  casacore::String obstype;
62  casacore::String antennaname;
63  casacore::Vector<casacore::Double> antennaposition;
64  casacore::Float equinox;
65  casacore::String freqref;
66  casacore::Double reffreq;
67  casacore::Double bandwidth;
68  casacore::Double utc;
69  casacore::String fluxunit;
70  casacore::String epoch;
71  casacore::String poltype;
72  void print() const ;
73};
74
75class SDDataDesc {
76
77public:
78
79  // Constructor
80  SDDataDesc() : n_(0) {;}
81  ~SDDataDesc() {;}
82
83  // Add an entry if source name and Integer ID (can be anything you
84  // like, such as FreqID) are unique.  You can add secondary entries
85  // direction and another integer index which are just stored along
86  // with the the primary entries
87  casacore::uInt addEntry(const casacore::String& source, casacore::uInt ID,
88                      const casacore::MDirection& secDir, casacore::uInt secID);
89
90  // Number of entries
91  casacore::Int length() const { return n_;}
92
93  // Get attributes
94  casacore::String source(casacore::uInt which) const {return source_[which];}
95  casacore::uInt ID(casacore::uInt which) const {return ID_[which];}
96  casacore::uInt secID(casacore::uInt which) const {return secID_[which];}
97  casacore::MDirection secDir(casacore::uInt which) const {return secDir_[which];}
98
99  // Summary
100  void summary() const;
101
102private:
103  casacore::uInt n_;
104  casacore::Vector<casacore::String> source_;
105  casacore::Vector<casacore::uInt> ID_, secID_;
106  casacore::Block<casacore::MDirection> secDir_;
107
108  SDDataDesc(const SDDataDesc& other);
109
110};
111
112
113} // namespace
114#endif
Note: See TracBrowser for help on using the repository browser.