casa
$Rev:20696$
|
00001 //# BJonesDesc.h: Define the format of BJones cal tables 00002 //# Copyright (C) 1996,1997,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_BJONESDESC_H 00030 #define CALIBRATION_BJONESDESC_H 00031 00032 #include <synthesis/CalTables/SolvableVJDesc.h> 00033 00034 namespace casa { //# NAMESPACE CASA - BEGIN 00035 00036 // <summary> 00037 // BJonesDesc: Define the format of BJones cal tables 00038 // </summary> 00039 00040 // <use visibility=export> 00041 00042 // <reviewed reviewer="" date="" tests="" demos=""> 00043 00044 // <prerequisite> 00045 //<li><linkto class="CalTableDesc">CalTableDesc</linkto> module 00046 //<li><linkto class="VisJonesDesc">VisJonesDesc</linkto> module 00047 //<li><linkto class="TimeVarVisJonesDesc">TimeVarVisJonesDesc</linkto> module 00048 //<li><linkto class="SolvableVisJonesDesc">SolvableVisJonesDesc</linkto> module 00049 // 00050 // </prerequisite> 00051 // 00052 // <etymology> 00053 // From "BJones" and "descriptor". 00054 // </etymology> 00055 // 00056 // <synopsis> 00057 // BJonesDesc defines the format of BJones calibration tables in terms 00058 // of table descriptors <linkto class="TableDesc">TableDesc</linkto>, 00059 // as used in the Table system. BJones matrices represent bandpass 00060 // corrections in the Measurement Equation formalism. At present, 00061 // this set of classes returns only the default table formats. 00062 // </etymology> 00063 // 00064 // <example> 00065 // <srcblock> 00066 // </srcblock> 00067 // </example> 00068 // 00069 // <motivation> 00070 // See CalTableDesc. 00071 // </motivation> 00072 // 00073 // <todo asof="98/01/01"> 00074 // Generate calibration table descriptors from a VisSet or VisBuffer object 00075 // </todo> 00076 00077 class BJonesDesc : public SolvableVisJonesDesc 00078 { 00079 public: 00080 // Default null constructor, and destructor 00081 BJonesDesc(); 00082 virtual ~BJonesDesc() {}; 00083 }; 00084 00085 00086 // <summary> 00087 // BJonesPolyDesc: Define the format of BJonesPoly cal tables 00088 // </summary> 00089 00090 // <use visibility=export> 00091 00092 // <reviewed reviewer="" date="" tests="" demos=""> 00093 00094 // <prerequisite> 00095 //<li><linkto class="CalTableDesc">CalTableDesc</linkto> module 00096 //<li><linkto class="VisJonesDesc">VisJonesDesc</linkto> module 00097 //<li><linkto class="TimeVarVisJonesDesc">TimeVarVisJonesDesc</linkto> module 00098 //<li><linkto class="SolvableVisJonesDesc">SolvableVisJonesDesc</linkto> module 00099 //<li><linkto class="BJonesDesc">BJonesDesc</linkto> module 00100 // 00101 // </prerequisite> 00102 // 00103 // <etymology> 00104 // From "BJones", "polynomial" and "descriptor". 00105 // </etymology> 00106 // 00107 // <synopsis> 00108 // BJonesPolyDesc defines the format of BJonesPoly calibration tables 00109 // in terms of table descriptors <linkto class="TableDesc">TableDesc</linkto>, 00110 // as used in the Table system. BJonesPoly matrices represent bandpass 00111 // corrections in the Measurement Equation formalism in polynomial form. 00112 // At present, these include b-spline and Chebyshev polynomial representations, 00113 // using the solver developed for Plateau de Bure interferometer data by 00114 // Anterrieu et al. 00115 // </etymology> 00116 // 00117 // <example> 00118 // <srcblock> 00119 // </srcblock> 00120 // </example> 00121 // 00122 // <motivation> 00123 // See CalTableDesc. 00124 // </motivation> 00125 // 00126 // <todo asof="02/01/01"> 00127 // Generate calibration table descriptors from a VisSet or VisBuffer object 00128 // </todo> 00129 00130 class BJonesPolyDesc : public BJonesDesc 00131 { 00132 public: 00133 // Default null constructor, and destructor 00134 BJonesPolyDesc(); 00135 virtual ~BJonesPolyDesc() {}; 00136 00137 // Return the table descriptor for the main calibration table 00138 virtual TableDesc calMainDesc(); 00139 }; 00140 00141 00142 } //# NAMESPACE CASA - END 00143 00144 #endif 00145 00146 00147 00148 00149