source: trunk/src/SDContainer.h@ 837

Last change on this file since 837 was 832, checked in by mar637, 19 years ago

Removed actual SDContainer class

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
RevLine 
[2]1//#---------------------------------------------------------------------------
2//# SDContainer.h: A container class for single dish integrations
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
[125]5//# ATNF
[2]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:
30//#---------------------------------------------------------------------------
[125]31#ifndef SDCONTAINER_H
32#define SDCONTAINER_H
[2]33
[18]34#include <vector>
35
[81]36#include <casa/aips.h>
37#include <casa/BasicSL/String.h>
38#include <casa/Arrays/Vector.h>
[326]39#include <casa/Containers/Block.h>
40#include <measures/Measures/MDirection.h>
[2]41
[125]42template<class T> class casa::Matrix;
[2]43
[83]44namespace asap {
[2]45
[18]46
47struct SDHeader {
[125]48 casa::Int nchan;
49 casa::Int npol;
50 casa::Int nif;
51 casa::Int nbeam;
52 casa::String observer;
53 casa::String project;
54 casa::String obstype;
55 casa::String antennaname;
56 casa::Vector<casa::Double> antennaposition;
57 casa::Float equinox;
58 casa::String freqref;
59 casa::Double reffreq;
60 casa::Double bandwidth;
61 casa::Double utc;
[204]62 casa::String fluxunit;
63 casa::String epoch;
[18]64 void print() const ;
65};
66
[326]67class SDDataDesc {
68
69public:
70
[453]71 // Constructor
[326]72 SDDataDesc() : n_(0) {;}
73 ~SDDataDesc() {;}
74
[453]75 // Add an entry if source name and Integer ID (can be anything you
76 // like, such as FreqID) are unique. You can add secondary entries
77 // direction and another integer index which are just stored along
78 // with the the primary entries
79 casa::uInt addEntry(const casa::String& source, casa::uInt ID,
[754]80 const casa::MDirection& secDir, casa::uInt secID);
[326]81
[453]82 // Number of entries
[326]83 casa::Int length() const { return n_;}
[754]84
[453]85 // Get attributes
86 casa::String source(casa::uInt which) const {return source_[which];}
[396]87 casa::uInt ID(casa::uInt which) const {return ID_[which];}
88 casa::uInt secID(casa::uInt which) const {return secID_[which];}
[453]89 casa::MDirection secDir(casa::uInt which) const {return secDir_[which];}
[754]90
[453]91 // Summary
[326]92 void summary() const;
93
94private:
95 casa::uInt n_;
96 casa::Vector<casa::String> source_;
[396]97 casa::Vector<casa::uInt> ID_, secID_;
98 casa::Block<casa::MDirection> secDir_;
[453]99
[326]100 SDDataDesc(const SDDataDesc& other);
[349]101
[326]102};
103
[453]104
[2]105} // namespace
106#endif
Note: See TracBrowser for help on using the repository browser.