casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
BJonesTable.h
Go to the documentation of this file.
00001 //# BJonesTable.h: BJones calibration table access and creation
00002 //# Copyright (C) 1996,1997,1998,1999,2001,2002,2003
00003 //# Associated Universities, Inc. Washington DC, USA.
00004 //#
00005 //# This library is free software; you can redistribute it and/or modify it
00006 //# under the terms of the GNU Library General Public License as published by
00007 //# the Free Software Foundation; either version 2 of the License, or (at your
00008 //# option) any later version.
00009 //#
00010 //# This library is distributed in the hope that it will be useful, but WITHOUT
00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00012 //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
00013 //# License for more details.
00014 //#
00015 //# You should have received a copy of the GNU Library General Public License
00016 //# along with this library; if not, write to the Free Software Foundation,
00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
00018 //#
00019 //# Correspondence concerning AIPS++ should be adressed as follows:
00020 //#        Internet email: aips2-request@nrao.edu.
00021 //#        Postal address: AIPS++ Project Office
00022 //#                        National Radio Astronomy Observatory
00023 //#                        520 Edgemont Road
00024 //#                        Charlottesville, VA 22903-2475 USA
00025 //#
00026 //#
00027 //# $Id$
00028 
00029 #ifndef CALIBRATION_BJONESTABLE_H
00030 #define CALIBRATION_BJONESTABLE_H
00031 
00032 #include <synthesis/CalTables/SolvableVJTable.h>
00033 #include <synthesis/CalTables/BJonesDesc.h>
00034 
00035 namespace casa { //# NAMESPACE CASA - BEGIN
00036 
00037 // <summary> 
00038 // BJonesTable: BJones calibration table access/creation
00039 // </summary>
00040 
00041 // <use visibility=export>
00042 
00043 // <reviewed reviewer="" date="" tests="" demos="">
00044 
00045 // <prerequisite>
00046 // <li> <linkto class="BJonesDesc">BJonesDesc</linkto>
00047 // </prerequisite>
00048 //
00049 // <etymology>
00050 // From "solvable","visibility", "Jones matrix", and "table".
00051 // </etymology>
00052 //
00053 // <synopsis>
00054 // The BJonesTable classes provide basic access to BJones calibration
00055 // tables. This includes the creation of calibration tables, 
00056 // sorting and selection capabilities, and basic data access. This 
00057 // class derives from SolvableVisJonesTable.
00058 // </etymology>
00059 //
00060 // <example>
00061 // <srcblock>
00062 // </srcblock>
00063 // </example>
00064 //
00065 // <motivation>
00066 // This class is used by other calibration table accessors and iterators.
00067 // </motivation>
00068 //
00069 // <todo asof="01/06/20">
00070 // (i) 
00071 // </todo>
00072 
00073 class BJonesTable : public SolvableVisJonesTable
00074 {
00075  public:
00076    // Default null constructor, and destructor
00077    BJonesTable();
00078    virtual ~BJonesTable();
00079 
00080    // Construct from a specified table name and table access option. 
00081    // Used for creating new tables or opening existing tables.
00082    BJonesTable (const String& tableName, 
00083                 Table::TableOption access = Table::Old);
00084 
00085  private:
00086    BJonesDesc itsBJonesDesc;
00087 };
00088 
00089 
00090 // <summary> 
00091 // BJonesPolyTable: BJonesPoly calibration table access/creation
00092 // </summary>
00093 
00094 // <use visibility=export>
00095 
00096 // <reviewed reviewer="" date="" tests="" demos="">
00097 
00098 // <prerequisite>
00099 // <li> <linkto class="BJonesPolyDesc">BJonesPolyDesc</linkto>
00100 // </prerequisite>
00101 //
00102 // <etymology>
00103 // From "B Jones matrix", "polynomial" and "table".
00104 // </etymology>
00105 //
00106 // <synopsis>
00107 // The BJonesPolyTable classes provide basic access to BJonesPoly 
00108 // calibration tables. This includes the creation of calibration tables, 
00109 // sorting and selection capabilities, and basic data access. This 
00110 // class derives from BJonesTable.
00111 // </etymology>
00112 //
00113 // <example>
00114 // <srcblock>
00115 // </srcblock>
00116 // </example>
00117 //
00118 // <motivation>
00119 // This class is used by other calibration table accessors and iterators.
00120 // </motivation>
00121 //
00122 // <todo asof="01/06/20">
00123 // (i) 
00124 // </todo>
00125 
00126 class BJonesPolyTable : public BJonesTable
00127 {
00128  public:
00129    // Default null constructor, and destructor
00130    BJonesPolyTable();
00131    virtual ~BJonesPolyTable();
00132 
00133    // Construct from a specified table name and table access option. 
00134    // Used for creating new tables or opening existing tables.
00135    BJonesPolyTable (const String& tableName, 
00136                     Table::TableOption access = Table::Old);
00137 
00138  private:
00139    BJonesPolyDesc itsBJonesPolyDesc;
00140 };
00141 
00142 
00143 } //# NAMESPACE CASA - END
00144 
00145 #endif
00146    
00147 
00148 
00149 
00150