casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TimeVarVJTable.h
Go to the documentation of this file.
00001 //# TimeVarVJTable.h: TimeVarVisJones calibration table access and creation
00002 //# Copyright (C) 1996,1997,1998,1999,2001,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_TIMEVARVJTABLE_H
00030 #define CALIBRATION_TIMEVARVJTABLE_H
00031 
00032 #include <synthesis/CalTables/VisJonesTable.h>
00033 #include <synthesis/CalTables/TimeVarVJDesc.h>
00034 
00035 namespace casa { //# NAMESPACE CASA - BEGIN
00036 
00037 // <summary> 
00038 // TimeVarVisJonesTable: TimeVarVisJones calibration table access and creation
00039 // </summary>
00040 
00041 // <use visibility=export>
00042 
00043 // <reviewed reviewer="" date="" tests="" demos="">
00044 
00045 // <prerequisite>
00046 //   <li> <linkto class="TimeVarVisJonesDesc">TimeVarVisJonesDesc</linkto> module
00047 // </prerequisite>
00048 //
00049 // <etymology>
00050 // From "time-variable","visibility", "Jones matrix", and "table".
00051 // </etymology>
00052 //
00053 // <synopsis>
00054 // The TimeVarVisJonesTable classes provide basic access to time-variable,
00055 // non-solvable VisJones calibration tables. This includes the 
00056 // creation of calibration tables, sorting and selection capabilities, 
00057 // and basic data access. This class derives from VisJonesTable.
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 TimeVarVisJonesTable : public VisJonesTable
00074 {
00075  public:
00076    // Default null constructor, and destructor
00077    TimeVarVisJonesTable();
00078    virtual ~TimeVarVisJonesTable();
00079 
00080    // Construct from a specified table name and table access option. 
00081    // Used for creating new tables or opening existing tables.
00082    TimeVarVisJonesTable (const String& tableName, 
00083                          Table::TableOption access = Table::Old);
00084 
00085  private:
00086    TimeVarVisJonesDesc itsTimeVarVisJonesDesc;
00087 };
00088 
00089 // <summary> 
00090 // PJonesTable: PJones calibration table access and creation
00091 // </summary>
00092 
00093 // <use visibility=export>
00094 
00095 // <reviewed reviewer="" date="" tests="" demos="">
00096 
00097 // <prerequisite>
00098 //   <li> <linkto class="PJonesDesc">PJonesDesc</linkto> module
00099 // </prerequisite>
00100 //
00101 // <etymology>
00102 // From "parallactic angle", "Jones matrix", and "table".
00103 // </etymology>
00104 //
00105 // <synopsis>
00106 // The PJonesTable classes provide basic access to time-variable,
00107 // non-solvable parallactic angle calibration tables. This includes 
00108 // the creation of calibration tables, sorting and selection 
00109 // capabilities, and basic data access. This class derives from 
00110 // VisJonesTable.
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 PJonesTable : public TimeVarVisJonesTable
00127 {
00128  public:
00129    // Default null constructor, and destructor
00130    PJonesTable();
00131    virtual ~PJonesTable();
00132 
00133    // Construct from a specified table name and table access option. 
00134    // Used for creating new tables or opening existing tables.
00135    PJonesTable (const String& tableName, 
00136                 Table::TableOption access = Table::Old);
00137 
00138  private:
00139    PJonesDesc itsPJonesDesc;
00140 };
00141 
00142 // <summary> 
00143 // CJonesTable: CJones calibration table access and creation
00144 // </summary>
00145 
00146 // <use visibility=export>
00147 
00148 // <reviewed reviewer="" date="" tests="" demos="">
00149 
00150 // <prerequisite>
00151 //   <li> <linkto class="CJonesDesc">CJonesDesc</linkto> module
00152 // </prerequisite>
00153 //
00154 // <etymology>
00155 // From "time-variable","visibility", "Jones matrix", and "table".
00156 // </etymology>
00157 //
00158 // <synopsis>
00159 // The CJonesTable classes provide basic access to time-variable,
00160 // non-solvable polarization configuration calibration tables. This 
00161 // includes the creation of calibration tables, sorting and selection 
00162 // capabilities, and basic data access. This class derives from 
00163 // VisJonesTable.
00164 // </etymology>
00165 //
00166 // <example>
00167 // <srcblock>
00168 // </srcblock>
00169 // </example>
00170 //
00171 // <motivation>
00172 // This class is used by other calibration table accessors and iterators.
00173 // </motivation>
00174 //
00175 // <todo asof="01/06/20">
00176 // (i) 
00177 // </todo>
00178 
00179 class CJonesTable : public TimeVarVisJonesTable
00180 {
00181  public:
00182    // Default null constructor, and destructor
00183    CJonesTable();
00184    virtual ~CJonesTable();
00185 
00186    // Construct from a specified table name and table access option. 
00187    // Used for creating new tables or opening existing tables.
00188    CJonesTable (const String& tableName, 
00189                 Table::TableOption access = Table::Old);
00190 
00191  private:
00192    CJonesDesc itsCJonesDesc;
00193 };
00194 
00195 
00196 } //# NAMESPACE CASA - END
00197 
00198 #endif
00199    
00200 
00201 
00202 
00203