casa
$Rev:20696$
|
00001 //# GJonesTable.h: GJones 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_GJONESTABLE_H 00030 #define CALIBRATION_GJONESTABLE_H 00031 00032 #include <synthesis/CalTables/SolvableVJTable.h> 00033 #include <synthesis/CalTables/GJonesDesc.h> 00034 00035 namespace casa { //# NAMESPACE CASA - BEGIN 00036 00037 // <summary> 00038 // GJonesPolyTable: GJonesPoly 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="GJonesPolyDesc">GJonesPolyDesc</linkto> 00047 // </prerequisite> 00048 // 00049 // <etymology> 00050 // From "G Jones matrix", "polynomial" and "table". 00051 // </etymology> 00052 // 00053 // <synopsis> 00054 // The GJonesPolyTable classes provide basic access to GJonesPoly 00055 // calibration tables. This includes the creation of calibration tables, 00056 // sorting and selection capabilities, and basic data access. This 00057 // class derives from GJonesTable. 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="02/02/01"> 00070 // (i) 00071 // </todo> 00072 00073 class GJonesPolyTable : public GJonesTable 00074 { 00075 public: 00076 // Default null constructor, and destructor 00077 GJonesPolyTable(); 00078 virtual ~GJonesPolyTable(); 00079 00080 // Construct from a specified table name and table access option. 00081 // Used for creating new tables or opening existing tables. 00082 GJonesPolyTable (const String& tableName, 00083 Table::TableOption access = Table::Old); 00084 00085 private: 00086 GJonesPolyDesc itsGJonesPolyDesc; 00087 }; 00088 00089 // <summary> 00090 // GJonesSplineTable: GJonesSpline calibration table access/creation 00091 // </summary> 00092 00093 // <use visibility=export> 00094 00095 // <reviewed reviewer="" date="" tests="" demos=""> 00096 00097 // <prerequisite> 00098 // <li> <linkto class="GJonesSplineDesc">GJonesSplineDesc</linkto> 00099 // </prerequisite> 00100 // 00101 // <etymology> 00102 // From "G Jones matrix", "spline polynomial" and "table". 00103 // </etymology> 00104 // 00105 // <synopsis> 00106 // The GJonesSplineTable classes provide basic access to GJonesSpline 00107 // calibration tables. This includes the creation of calibration tables, 00108 // sorting and selection capabilities, and basic data access. This 00109 // class derives from GJonesPolyTable. 00110 // </etymology> 00111 // 00112 // <example> 00113 // <srcblock> 00114 // </srcblock> 00115 // </example> 00116 // 00117 // <motivation> 00118 // This class is used by other calibration table accessors and iterators. 00119 // </motivation> 00120 // 00121 // <todo asof="02/02/01"> 00122 // (i) 00123 // </todo> 00124 00125 class GJonesSplineTable : public GJonesPolyTable 00126 { 00127 public: 00128 // Default null constructor, and destructor 00129 GJonesSplineTable(); 00130 virtual ~GJonesSplineTable(); 00131 00132 // Construct from a specified table name and table access option. 00133 // Used for creating new tables or opening existing tables. 00134 GJonesSplineTable (const String& tableName, 00135 Table::TableOption access = Table::Old); 00136 00137 private: 00138 GJonesSplineDesc itsGJonesSplineDesc; 00139 }; 00140 00141 00142 } //# NAMESPACE CASA - END 00143 00144 #endif 00145 00146 00147 00148 00149