casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VisJonesTable.h
Go to the documentation of this file.
1 //# VisJonesTable.h: VisJones calibration table access and creation
2 //# Copyright (C) 1996,1997,1998,1999,2001,2003
3 //# Associated Universities, Inc. Washington DC, USA.
4 //#
5 //# This library is free software; you can redistribute it and/or modify it
6 //# under the terms of the GNU Library General Public License as published by
7 //# the Free Software Foundation; either version 2 of the License, or (at your
8 //# option) any later version.
9 //#
10 //# This library is distributed in the hope that it will be useful, but WITHOUT
11 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 //# License for more details.
14 //#
15 //# You should have received a copy of the GNU Library General Public License
16 //# along with this library; if not, write to the Free Software Foundation,
17 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 //#
19 //# Correspondence concerning AIPS++ should be adressed as follows:
20 //# Internet email: aips2-request@nrao.edu.
21 //# Postal address: AIPS++ Project Office
22 //# National Radio Astronomy Observatory
23 //# 520 Edgemont Road
24 //# Charlottesville, VA 22903-2475 USA
25 //#
26 //#
27 //# $Id$
28 
29 #ifndef CALIBRATION_VISJONESTABLE_H
30 #define CALIBRATION_VISJONESTABLE_H
31 
34 
35 namespace casa { //# NAMESPACE CASA - BEGIN
36 
37 // <summary>
38 // VisJonesTable: VisJones calibration table access and creation
39 // </summary>
40 
41 // <use visibility=export>
42 
43 // <reviewed reviewer="" date="" tests="" demos="">
44 
45 // <prerequisite>
46 // <li> <linkto class="VisJonesDesc">VisJonesDesc</linkto> module
47 // </prerequisite>
48 //
49 // <etymology>
50 // From "visibility", "Jones matrix", and "table".
51 // </etymology>
52 //
53 // <synopsis>
54 // The VisJonesTable classes provide basic access to VisJones
55 // calibration tables. This includes the creation of calibration
56 // tables, sorting and selection capabilities, and basic data access.
57 // Specializations for time-variable, solvable VisJones sub-types
58 // are provided through inheritance. This class inherits from CalTable.
59 // </etymology>
60 //
61 // <example>
62 // <srcblock>
63 // </srcblock>
64 // </example>
65 //
66 // <motivation>
67 // This class is used by other calibration table accessors and iterators.
68 // </motivation>
69 //
70 // <todo asof="01/06/20">
71 // (i)
72 // </todo>
73 
74 class VisJonesTable : public CalTable
75 {
76  public:
77  // Default null constructor, and destructor
78  VisJonesTable();
79  virtual ~VisJonesTable();
80 
81  // Construct from a specified table name and table access option.
82  // Used for creating new tables or opening existing tables.
85 
86  private:
88  };
89 
90 
91 } //# NAMESPACE CASA - END
92 
93 #endif
94 
95 
96 
97 
98 
const casacore::String tableName()
Definition: CalTable.h:157
CalTable: Calibration table access and creation.
Definition: CalTable.h:82
VisJonesTable: VisJones calibration table access and creation.
Definition: VisJonesTable.h:74
VisJonesTable()
Default null constructor, and destructor.
existing table
Definition: Table.h:170
virtual ~VisJonesTable()
String: the storage and methods of handling collections of characters.
Definition: String.h:223
VisJonesDesc: Define the format of VisJones calibration tables.
Definition: VisJonesDesc.h:73
TableOption
Define the possible options how a table can be opened.
Definition: Table.h:168
VisJonesDesc itsVisJonesDesc
Definition: VisJonesTable.h:87