Line data Source code
1 : //# TJonesDesc.h: Define the format of TJones cal tables 2 : //# Copyright (C) 1996,1997,2002,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: casa-feedback@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_TJONESDESC_H 30 : #define CALIBRATION_TJONESDESC_H 31 : 32 : #include <synthesis/CalTables/SolvableVJDesc.h> 33 : 34 : namespace casa { //# NAMESPACE CASA - BEGIN 35 : 36 : // <summary> 37 : // TJonesPolyDesc: Define the format of TJonesPoly cal tables 38 : // </summary> 39 : 40 : // <use visibility=export> 41 : 42 : // <reviewed reviewer="" date="" tests="" demos=""> 43 : 44 : // <prerequisite> 45 : //<li><linkto class="CalTableDesc">CalTableDesc</linkto> module 46 : //<li><linkto class="VisJonesDesc">VisJonesDesc</linkto> module 47 : //<li><linkto class="TimeVarVisJonesDesc">TimeVarVisJonesDesc</linkto> module 48 : //<li><linkto class="SolvableVisJonesDesc">SolvableVisJonesDesc</linkto> module 49 : //<li><linkto class="TJonesDesc">TJonesDesc</linkto> module 50 : // 51 : // </prerequisite> 52 : // 53 : // <etymology> 54 : // From "TJones", "polynomial" and "descriptor". 55 : // </etymology> 56 : // 57 : // <synopsis> 58 : // TJonesPolyDesc defines the format of TJonesPoly calibration tables 59 : // in terms of table descriptors <linkto class="casacore::TableDesc">casacore::TableDesc</linkto>, 60 : // as used in the casacore::Table system. TJonesPoly matrices represent atmospheric 61 : // gain corrections in the Measurement Equation formalism expressed as 62 : // polynomials over time. 63 : // </synopsis> 64 : // 65 : // <example> 66 : // <srcblock> 67 : // </srcblock> 68 : // </example> 69 : // 70 : // <motivation> 71 : // See CalTableDesc. 72 : // </motivation> 73 : // 74 : // <todo asof="02/01/01"> 75 : // i) Move TJonesDesc to this file 76 : // </todo> 77 : 78 : class TJonesPolyDesc : public TJonesDesc 79 : { 80 : public: 81 : // Default null constructor, and destructor 82 : TJonesPolyDesc(); 83 0 : virtual ~TJonesPolyDesc() {}; 84 : 85 : // Return the table descriptor for the main calibration table 86 : virtual casacore::TableDesc calMainDesc(); 87 : }; 88 : 89 : // <summary> 90 : // TJonesSplineDesc: Define the format of TJonesSpline cal tables 91 : // </summary> 92 : 93 : // <use visibility=export> 94 : 95 : // <reviewed reviewer="" date="" tests="" demos=""> 96 : 97 : // <prerequisite> 98 : //<li><linkto class="CalTableDesc">CalTableDesc</linkto> module 99 : //<li><linkto class="VisJonesDesc">VisJonesDesc</linkto> module 100 : //<li><linkto class="TimeVarVisJonesDesc">TimeVarVisJonesDesc</linkto> module 101 : //<li><linkto class="SolvableVisJonesDesc">SolvableVisJonesDesc</linkto> module 102 : //<li><linkto class="TJonesDesc">TJonesDesc</linkto> module 103 : //<li><linkto class="TJonesPolyDesc">TJonesPolyDesc</linkto> module 104 : // 105 : // </prerequisite> 106 : // 107 : // <etymology> 108 : // From "TJones", "polynomial" and "descriptor". 109 : // </etymology> 110 : // 111 : // <synopsis> 112 : // TJonesSplineDesc defines the format of TJonesSpline calibration tables 113 : // in terms of table descriptors <linkto class="casacore::TableDesc">casacore::TableDesc</linkto>, 114 : // as used in the casacore::Table system. TJonesSpline matrices represent atmospheric 115 : // gain corrections in the Measurement Equation formalism expressed as 116 : // spline polynomials over time. 117 : // </synopsis> 118 : // 119 : // <example> 120 : // <srcblock> 121 : // </srcblock> 122 : // </example> 123 : // 124 : // <motivation> 125 : // See CalTableDesc. 126 : // </motivation> 127 : // 128 : // <todo asof="02/01/01"> 129 : // i) Move TJonesDesc to this file 130 : // </todo> 131 : 132 : class TJonesSplineDesc : public TJonesPolyDesc 133 : { 134 : public: 135 : // Default null constructor, and destructor 136 : TJonesSplineDesc(); 137 0 : virtual ~TJonesSplineDesc() {}; 138 : 139 : // Return the table descriptor for the main calibration table 140 : virtual casacore::TableDesc calMainDesc(); 141 : }; 142 : 143 : 144 : } //# NAMESPACE CASA - END 145 : 146 : #endif 147 : 148 : 149 : 150 : 151 :