casa
$Rev:20696$
|
00001 //# VisJonesMCol.h: VisJones cal_main table column access 00002 //# Copyright (C) 1996,1997,1998,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_VISJONESMCOL_H 00030 #define CALIBRATION_VISJONESMCOL_H 00031 00032 #include <synthesis/CalTables/CalMainColumns.h> 00033 00034 namespace casa { //# NAMESPACE CASA - BEGIN 00035 00036 // <summary> 00037 // ROVisJonesMCol: Read-only VisJones cal_main calibration table column access 00038 // </summary> 00039 00040 // <use visibility=export> 00041 00042 // <reviewed reviewer="" date="" tests="" demos=""> 00043 00044 // <prerequisite> 00045 // <li> <linkto class="CalMainColumns">CalMainColumns</linkto> module 00046 // </prerequisite> 00047 // 00048 // <etymology> 00049 // From "read-only", "visibility Jones", "cal main table" and "columns". 00050 // </etymology> 00051 // 00052 // <synopsis> 00053 // The ROVisJonesMCol class allows read-only access to columns in the 00054 // VisJones main calibration table. Specializations for baseline-based, 00055 // time-variable and solvable VisJones calibration table record types 00056 // are provided through inheritance. 00057 // </etymology> 00058 // 00059 // <example> 00060 // <srcblock> 00061 // </srcblock> 00062 // </example> 00063 // 00064 // <motivation> 00065 // Encapsulate access to calibration table columns. 00066 // </motivation> 00067 // 00068 // <todo asof="01/07/01"> 00069 // (i) Deal with non-standard columns. 00070 // </todo> 00071 00072 class ROVisJonesMCol : public ROCalMainColumns 00073 { 00074 public: 00075 // Construct from a calibration table 00076 ROVisJonesMCol (const CalTable& calTable); 00077 00078 // Default destructor 00079 virtual ~ROVisJonesMCol() {}; 00080 00081 protected: 00082 // Prohibit public use of the null constructor, which 00083 // does not produce a usable object. 00084 ROVisJonesMCol() {}; 00085 00086 private: 00087 // Prohibit copy constructor and assignment operator 00088 ROVisJonesMCol (const ROVisJonesMCol&); 00089 ROVisJonesMCol& operator= (const ROVisJonesMCol&); 00090 }; 00091 00092 // <summary> 00093 // VisJonesMCol: Read-write VisJones cal_main calibration table column access 00094 // </summary> 00095 00096 // <use visibility=export> 00097 00098 // <reviewed reviewer="" date="" tests="" demos=""> 00099 00100 // <prerequisite> 00101 // <li> <linkto class="CalMainColumns">CalMainColumns</linkto> module 00102 // </prerequisite> 00103 // 00104 // <etymology> 00105 // From "visibility Jones", "calibration main table" and "columns". 00106 // </etymology> 00107 // 00108 // <synopsis> 00109 // The VisJonesMCol class allows read-write access to columns in the 00110 // VisJones main calibration table. Specializations for baseline-based, 00111 // time-variable and solvable VisJones calibration table record types 00112 // are provided through inheritance. 00113 // </etymology> 00114 // 00115 // <example> 00116 // <srcblock> 00117 // </srcblock> 00118 // </example> 00119 // 00120 // <motivation> 00121 // Encapsulate access to calibration table columns. 00122 // </motivation> 00123 // 00124 // <todo asof="01/07/01"> 00125 // (i) Deal with non-standard columns. 00126 // </todo> 00127 00128 class VisJonesMCol : public CalMainColumns 00129 { 00130 public: 00131 // Construct from a calibration table 00132 VisJonesMCol (CalTable& calTable); 00133 00134 // Default destructor 00135 virtual ~VisJonesMCol() {}; 00136 00137 protected: 00138 // Prohibit public use of the null constructor, which 00139 // does not produce a usable object. 00140 VisJonesMCol() {}; 00141 00142 private: 00143 // Prohibit copy constructor and assignment operator 00144 VisJonesMCol (const VisJonesMCol&); 00145 VisJonesMCol& operator= (const VisJonesMCol&); 00146 00147 }; 00148 00149 00150 } //# NAMESPACE CASA - END 00151 00152 #endif 00153 00154 00155 00156 00157