casa
$Rev:20696$
|
00001 //# SolvableVJTable.h: SolvableVisJones 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_SOLVABLEVJTABLE_H 00030 #define CALIBRATION_SOLVABLEVJTABLE_H 00031 00032 #include <synthesis/CalTables/TimeVarVJTable.h> 00033 #include <synthesis/CalTables/SolvableVJDesc.h> 00034 00035 namespace casa { //# NAMESPACE CASA - BEGIN 00036 00037 // <summary> 00038 // SolvableVisJonesTable: SolvableVisJones 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="SolvableVisJonesDesc">SolvableVisJonesDesc</linkto> 00047 // </prerequisite> 00048 // 00049 // <etymology> 00050 // From "solvable","visibility", "Jones matrix", and "table". 00051 // </etymology> 00052 // 00053 // <synopsis> 00054 // The SolvableVisJonesTable classes provide basic access to time-variable, 00055 // 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 TimeVarVisJonesTable. 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 SolvableVisJonesTable : public TimeVarVisJonesTable 00074 { 00075 public: 00076 // Default null constructor, and destructor 00077 SolvableVisJonesTable(); 00078 virtual ~SolvableVisJonesTable(); 00079 00080 // Construct from a specified table name and table access option. 00081 // Used for creating new tables or opening existing tables. 00082 SolvableVisJonesTable (const String& tableName, 00083 Table::TableOption access = Table::Old); 00084 00085 SolvableVisJonesTable (const String& tableName, 00086 const String& type, 00087 Table::TableOption access = Table::Old); 00088 00089 private: 00090 SolvableVisJonesDesc itsSolvableVisJonesDesc; 00091 }; 00092 00093 // <summary> 00094 // GJonesTable: GJones calibration table access and creation 00095 // </summary> 00096 00097 // <use visibility=export> 00098 00099 // <reviewed reviewer="" date="" tests="" demos=""> 00100 00101 // <prerequisite> 00102 // <li> <linkto class="GJonesDesc">GJonesDesc</linkto> module 00103 // </prerequisite> 00104 // 00105 // <etymology> 00106 // From "gain", "Jones matrix", and "table". 00107 // </etymology> 00108 // 00109 // <synopsis> 00110 // The GJonesTable classes provide basic access to time-variable, 00111 // solvable electronic gain calibration tables. This includes 00112 // the creation of calibration tables, sorting and selection 00113 // capabilities, and basic data access. This class derives from 00114 // SolvableVisJonesTable. 00115 // </etymology> 00116 // 00117 // <example> 00118 // <srcblock> 00119 // </srcblock> 00120 // </example> 00121 // 00122 // <motivation> 00123 // This class is used by other calibration table accessors and iterators. 00124 // </motivation> 00125 // 00126 // <todo asof="01/06/20"> 00127 // (i) 00128 // </todo> 00129 00130 class GJonesTable : public SolvableVisJonesTable 00131 { 00132 public: 00133 // Default null constructor, and destructor 00134 GJonesTable(); 00135 virtual ~GJonesTable(); 00136 00137 // Construct from a specified table name and table access option. 00138 // Used for creating new tables or opening existing tables. 00139 GJonesTable (const String& tableName, 00140 Table::TableOption access = Table::Old); 00141 00142 private: 00143 GJonesDesc itsGJonesDesc; 00144 }; 00145 00146 // <summary> 00147 // GJonesDelayRateSBTable: GJonesDelayRateSB calibration table access and creation 00148 // </summary> 00149 00150 // <use visibility=export> 00151 00152 // <reviewed reviewer="" date="" tests="" demos=""> 00153 00154 // <prerequisite> 00155 // <li> <linkto class="GJonesDelayRateSBDesc">GJonesDelayRateSBDesc</linkto> module 00156 // </prerequisite> 00157 // 00158 // <etymology> 00159 // From "gain", "Jones matrix", and "table". 00160 // </etymology> 00161 // 00162 // <synopsis> 00163 // The GJonesDelayRateSBTable classes provide basic access to time-variable, 00164 // solvable electronic gain calibration tables. This includes 00165 // the creation of calibration tables, sorting and selection 00166 // capabilities, and basic data access. This class derives from 00167 // SolvableVisJonesTable. 00168 // </etymology> 00169 // 00170 // <example> 00171 // <srcblock> 00172 // </srcblock> 00173 // </example> 00174 // 00175 // <motivation> 00176 // This class is used by other calibration table accessors and iterators. 00177 // </motivation> 00178 // 00179 // <todo asof="01/06/20"> 00180 // (i) 00181 // </todo> 00182 00183 class GJonesDelayRateSBTable : public SolvableVisJonesTable 00184 { 00185 public: 00186 // Default null constructor, and destructor 00187 GJonesDelayRateSBTable(); 00188 virtual ~GJonesDelayRateSBTable(); 00189 00190 // Construct from a specified table name and table access option. 00191 // Used for creating new tables or opening existing tables. 00192 GJonesDelayRateSBTable (const String& tableName, 00193 Table::TableOption access = Table::Old); 00194 00195 private: 00196 GJonesDelayRateSBDesc itsGJonesDelayRateSBDesc; 00197 }; 00198 00199 // <summary> 00200 // DJonesTable: DJones calibration table access and creation 00201 // </summary> 00202 00203 // <use visibility=export> 00204 00205 // <reviewed reviewer="" date="" tests="" demos=""> 00206 00207 // <prerequisite> 00208 // <li> <linkto class="DJonesDesc">DJonesDesc</linkto> module 00209 // </prerequisite> 00210 // 00211 // <etymology> 00212 // From "DJones matrix", and "table". 00213 // </etymology> 00214 // 00215 // <synopsis> 00216 // The DJonesTable classes provide basic access to time-variable, 00217 // solvable polarization response calibration tables. This 00218 // includes the creation of calibration tables, sorting and selection 00219 // capabilities, and basic data access. This class derives from 00220 // SolvableVisJonesTable. 00221 // </etymology> 00222 // 00223 // <example> 00224 // <srcblock> 00225 // </srcblock> 00226 // </example> 00227 // 00228 // <motivation> 00229 // This class is used by other calibration table accessors and iterators. 00230 // </motivation> 00231 // 00232 // <todo asof="01/06/20"> 00233 // (i) 00234 // </todo> 00235 00236 class DJonesTable : public SolvableVisJonesTable 00237 { 00238 public: 00239 // Default null constructor, and destructor 00240 DJonesTable(); 00241 virtual ~DJonesTable(); 00242 00243 // Construct from a specified table name and table access option. 00244 // Used for creating new tables or opening existing tables. 00245 DJonesTable (const String& tableName, 00246 Table::TableOption access = Table::Old); 00247 00248 private: 00249 DJonesDesc itsDJonesDesc; 00250 }; 00251 00252 // <summary> 00253 // TJonesTable: TJones calibration table access and creation 00254 // </summary> 00255 00256 // <use visibility=export> 00257 00258 // <reviewed reviewer="" date="" tests="" demos=""> 00259 00260 // <prerequisite> 00261 // <li> <linkto class="TJonesDesc">TJonesDesc</linkto> module 00262 // </prerequisite> 00263 // 00264 // <etymology> 00265 // From "TJones matrix", and "table". 00266 // </etymology> 00267 // 00268 // <synopsis> 00269 // The TJonesTable classes provide basic access to time-variable, 00270 // solvable atmosphere calibration tables. This includes the 00271 // creation of calibration tables, sorting and selection 00272 // capabilities, and basic data access. This class derives from 00273 // SolvableVisJonesTable. 00274 // </etymology> 00275 // 00276 // <example> 00277 // <srcblock> 00278 // </srcblock> 00279 // </example> 00280 // 00281 // <motivation> 00282 // This class is used by other calibration table accessors and iterators. 00283 // </motivation> 00284 // 00285 // <todo asof="01/06/20"> 00286 // (i) 00287 // </todo> 00288 00289 class TJonesTable : public SolvableVisJonesTable 00290 { 00291 public: 00292 // Default null constructor, and destructor 00293 TJonesTable(); 00294 virtual ~TJonesTable(); 00295 00296 // Construct from a specified table name and table access option. 00297 // Used for creating new tables or opening existing tables. 00298 TJonesTable (const String& tableName, 00299 Table::TableOption access = Table::Old); 00300 00301 private: 00302 TJonesDesc itsTJonesDesc; 00303 }; 00304 00305 00306 } //# NAMESPACE CASA - END 00307 00308 #endif 00309 00310 00311 00312 00313