casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GJonesMCol.h
Go to the documentation of this file.
1 //# GJonesMCol.h: GJones cal_main table column access
2 //# Copyright (C) 1996,1997,1998,2001,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: aips2-request@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_GJONESMCOL_H
30 #define CALIBRATION_GJONESMCOL_H
31 
34 
35 namespace casa { //# NAMESPACE CASA - BEGIN
36 
37 // <summary>
38 // ROGJonesPolyMCol: Read-only GJonesPoly cal_main column access
39 // </summary>
40 
41 // <use visibility=export>
42 
43 // <reviewed reviewer="" date="" tests="" demos="">
44 
45 // <prerequisite>
46 // <li> <linkto class="ROCalMainColumns">ROCalMainColumns</linkto> module
47 // </prerequisite>
48 //
49 // <etymology>
50 // From "read-only","GJonesPoly","cal main" and "columns".
51 // </etymology>
52 //
53 // <synopsis>
54 // The ROGJonesPolyMCol class allows read-only access to columns in the
55 // GJonesPoly main calibration table. GJonesPoly matrices are used to
56 // store electronic gain information in the Measurement Equation formalism
57 // in polynomial form over time.
58 // </synopsis>
59 //
60 // <example>
61 // <srcblock>
62 // </srcblock>
63 // </example>
64 //
65 // <motivation>
66 // Encapsulate read-only access to GJonesPoly calibration table columns.
67 // </motivation>
68 //
69 // <todo asof="02/02/01">
70 // (i) Deal with non-standard columns.
71 // (ii) Migrate GJonesMCol to this file.
72 // </todo>
73 
75 {
76  public:
77  // Construct from a calibration table
78  ROGJonesPolyMCol (const GJonesPolyTable& gjpTable);
79 
80  // Default destructor
81  virtual ~ROGJonesPolyMCol() {};
82 
83  // Read-only column accessors
91  {return polyCoeffPhase_p;};
93 
94  protected:
95  // Prohibit public use of the null constructor, which
96  // does not produce a usable object.
98 
99  private:
100  // Prohibit copy constructor and assignment operator
103 
104  // Private column accessors
113 };
114 
115 // <summary>
116 // GJonesPolyMCol: RW GJonesPoly cal_main column access
117 // </summary>
118 
119 // <use visibility=export>
120 
121 // <reviewed reviewer="" date="" tests="" demos="">
122 
123 // <prerequisite>
124 // <li> <linkto class="CalMainColumns">CalMainColumns</linkto> module
125 // </prerequisite>
126 //
127 // <etymology>
128 // From "GJonesPoly","cal main table" and "columns".
129 // </etymology>
130 //
131 // <synopsis>
132 // The GJonesPolyMCol class allows read-only access to columns in the
133 // GJonesPoly main calibration table. GJonesPoly matrices are used to
134 // store electronic gain information in the Measurement Equation formalism
135 // in polynomial form over time.
136 // </synopsis>
137 //
138 // <example>
139 // <srcblock>
140 // </srcblock>
141 // </example>
142 //
143 // <motivation>
144 // Encapsulate read-write access to GJonesPoly calibration table columns.
145 // </motivation>
146 //
147 // <todo asof="01/07/01">
148 // (i) Deal with non-standard columns.
149 // </todo>
150 
152 {
153  public:
154  // Construct from a calibration table
155  GJonesPolyMCol (GJonesPolyTable& gjpTable);
156 
157  // Default destructor
158  virtual ~GJonesPolyMCol() {};
159 
160  // Read-write column accessors
169 
170  protected:
171  // Prohibit public use of the null constructor, which
172  // does not produce a usable object.
174 
175  private:
176  // Prohibit copy constructor and assignment operator
179 
180  // Private column accessors
189 };
190 
191 // <summary>
192 // ROGJonesSplineMCol: Read-only GJonesSpline cal_main column access
193 // </summary>
194 
195 // <use visibility=export>
196 
197 // <reviewed reviewer="" date="" tests="" demos="">
198 
199 // <prerequisite>
200 // <li> <linkto class="ROCalMainColumns">ROCalMainColumns</linkto> module
201 // </prerequisite>
202 //
203 // <etymology>
204 // From "read-only","GJonesSpline","cal main" and "columns".
205 // </etymology>
206 //
207 // <synopsis>
208 // The ROGJonesSplineMCol class allows read-only access to columns in the
209 // GJonesSpline main calibration table. GJonesSpline matrices are used to
210 // store electronic gain information in the Measurement Equation formalism
211 // in spline polynomial form over time.
212 // </synopsis>
213 //
214 // <example>
215 // <srcblock>
216 // </srcblock>
217 // </example>
218 //
219 // <motivation>
220 // Encapsulate read-only access to GJonesSpline calibration table columns.
221 // </motivation>
222 //
223 // <todo asof="02/02/01">
224 // (i) Deal with non-standard columns.
225 // (ii) Migrate GJonesMCol to this file.
226 // </todo>
227 
229 {
230  public:
231  // Construct from a calibration table
232  ROGJonesSplineMCol (const GJonesSplineTable& gjsTable);
233 
234  // Default destructor
235  virtual ~ROGJonesSplineMCol() {};
236 
237  // Read-only column accessors
241  {return splineKnotsAmp_p;};
243  {return splineKnotsPhase_p;};
244 
245  protected:
246  // Prohibit public use of the null constructor, which
247  // does not produce a usable object.
249 
250  private:
251  // Prohibit copy constructor and assignment operator
254 
255  // Private column accessors
260 };
261 
262 // <summary>
263 // GJonesSplineMCol: RW GJonesSpline cal_main column access
264 // </summary>
265 
266 // <use visibility=export>
267 
268 // <reviewed reviewer="" date="" tests="" demos="">
269 
270 // <prerequisite>
271 // <li> <linkto class="CalMainColumns">CalMainColumns</linkto> module
272 // </prerequisite>
273 //
274 // <etymology>
275 // From "GJonesSpline","cal main table" and "columns".
276 // </etymology>
277 //
278 // <synopsis>
279 // The GJonesSplineMCol class allows read-only access to columns in the
280 // GJonesSpline main calibration table. GJonesSpline matrices are used to
281 // store electronic gain information in the Measurement Equation formalism
282 // in spline polynomial form over time.
283 // </synopsis>
284 //
285 // <example>
286 // <srcblock>
287 // </srcblock>
288 // </example>
289 //
290 // <motivation>
291 // Encapsulate read-write access to GJonesSpline calibration table columns.
292 // </motivation>
293 //
294 // <todo asof="01/07/01">
295 // (i) Deal with non-standard columns.
296 // </todo>
297 
299 {
300  public:
301  // Construct from a calibration table
303 
304  // Default destructor
305  virtual ~GJonesSplineMCol() {};
306 
307  // Read-write column accessors
312 
313  protected:
314  // Prohibit public use of the null constructor, which
315  // does not produce a usable object.
317 
318  private:
319  // Prohibit copy constructor and assignment operator
322 
323  // Private column accessors
328 };
329 
330 
331 } //# NAMESPACE CASA - END
332 
333 #endif
334 
335 
336 
337 
338 
ROGJonesMCol: Read-only GJones cal_main column access.
const casacore::ArrayColumn< casacore::Double > & splineKnotsAmp() const
Definition: GJonesMCol.h:240
casacore::ArrayColumn< casacore::Double > splineKnotsPhase_p
Definition: GJonesMCol.h:327
ROGJonesPolyMCol: Read-only GJonesPoly cal_main column access.
Definition: GJonesMCol.h:74
casacore::ScalarColumn< casacore::Int > nPolyPhase_p
Definition: GJonesMCol.h:185
casacore::ScalarColumn< casacore::Int > & nPolyPhase()
Definition: GJonesMCol.h:165
GJonesPolyMCol & operator=(const GJonesPolyMCol &)
GJonesPolyTable: GJonesPoly calibration table access/creation.
Definition: GJonesTable.h:73
const casacore::ScalarColumn< casacore::String > & polyType() const
Read-only column accessors.
Definition: GJonesMCol.h:84
casacore::ScalarColumn< casacore::String > & phaseUnits()
Definition: GJonesMCol.h:168
casacore::ScalarColumn< casacore::String > polyType_p
Private column accessors.
Definition: GJonesMCol.h:181
casacore::ScalarColumn< casacore::String > phaseUnits_p
Definition: GJonesMCol.h:112
casacore::ScalarColumn< casacore::Int > nPolyAmp_p
Definition: GJonesMCol.h:184
casacore::ScalarColumn< casacore::Int > nKnotsPhase_p
Definition: GJonesMCol.h:257
ROGJonesSplineMCol: Read-only GJonesSpline cal_main column access.
Definition: GJonesMCol.h:228
GJonesPolyMCol: RW GJonesPoly cal_main column access.
Definition: GJonesMCol.h:151
casacore::ScalarColumn< casacore::Int > nPolyPhase_p
Definition: GJonesMCol.h:109
const casacore::ArrayColumn< casacore::Double > & polyCoeffPhase() const
Definition: GJonesMCol.h:90
GJonesSplineMCol & operator=(const GJonesSplineMCol &)
virtual ~GJonesSplineMCol()
Default destructor.
Definition: GJonesMCol.h:305
casacore::ArrayColumn< casacore::Double > splineKnotsPhase_p
Definition: GJonesMCol.h:259
casacore::ScalarColumn< casacore::String > polyType_p
Private column accessors.
Definition: GJonesMCol.h:105
const casacore::ScalarColumn< casacore::String > & polyMode() const
Definition: GJonesMCol.h:85
casacore::ArrayColumn< casacore::Double > & splineKnotsPhase()
Definition: GJonesMCol.h:311
casacore::ScalarColumn< casacore::Int > nKnotsPhase_p
Definition: GJonesMCol.h:325
casacore::ScalarColumn< casacore::Complex > & scaleFactor()
Definition: GJonesMCol.h:163
const casacore::ScalarColumn< casacore::Int > & nPolyAmp() const
Definition: GJonesMCol.h:87
casacore::ScalarColumn< casacore::String > phaseUnits_p
Definition: GJonesMCol.h:188
GJonesSplineMCol: RW GJonesSpline cal_main column access.
Definition: GJonesMCol.h:298
const casacore::ScalarColumn< casacore::String > & phaseUnits() const
Definition: GJonesMCol.h:92
casacore::ArrayColumn< casacore::Double > splineKnotsAmp_p
Definition: GJonesMCol.h:258
virtual ~ROGJonesSplineMCol()
Default destructor.
Definition: GJonesMCol.h:235
virtual ~GJonesPolyMCol()
Default destructor.
Definition: GJonesMCol.h:158
casacore::ArrayColumn< casacore::Double > splineKnotsAmp_p
Definition: GJonesMCol.h:326
const casacore::ScalarColumn< casacore::Int > & nPolyPhase() const
Definition: GJonesMCol.h:88
const casacore::ScalarColumn< casacore::Int > & nKnotsPhase() const
Definition: GJonesMCol.h:239
casacore::ArrayColumn< casacore::Double > polyCoeffPhase_p
Definition: GJonesMCol.h:111
casacore::ArrayColumn< casacore::Double > polyCoeffPhase_p
Definition: GJonesMCol.h:187
casacore::ScalarColumn< casacore::Int > & nKnotsAmp()
Read-write column accessors.
Definition: GJonesMCol.h:308
casacore::ScalarColumn< casacore::String > & polyMode()
Definition: GJonesMCol.h:162
ROGJonesPolyMCol & operator=(const ROGJonesPolyMCol &)
casacore::ScalarColumn< casacore::Int > nKnotsAmp_p
Private column accessors.
Definition: GJonesMCol.h:324
casacore::ScalarColumn< casacore::Complex > scaleFactor_p
Definition: GJonesMCol.h:183
casacore::ScalarColumn< casacore::Int > & nKnotsPhase()
Definition: GJonesMCol.h:309
casacore::ScalarColumn< casacore::String > polyMode_p
Definition: GJonesMCol.h:106
const casacore::ArrayColumn< casacore::Double > & polyCoeffAmp() const
Definition: GJonesMCol.h:89
casacore::ArrayColumn< casacore::Double > polyCoeffAmp_p
Definition: GJonesMCol.h:110
casacore::ArrayColumn< casacore::Double > & polyCoeffAmp()
Definition: GJonesMCol.h:166
GJonesSplineMCol()
Prohibit public use of the null constructor, which does not produce a usable object.
Definition: GJonesMCol.h:316
casacore::ScalarColumn< casacore::Int > nPolyAmp_p
Definition: GJonesMCol.h:108
ROGJonesSplineMCol & operator=(const ROGJonesSplineMCol &)
casacore::ArrayColumn< casacore::Double > & splineKnotsAmp()
Definition: GJonesMCol.h:310
ROGJonesSplineMCol()
Prohibit public use of the null constructor, which does not produce a usable object.
Definition: GJonesMCol.h:248
casacore::ScalarColumn< casacore::String > polyMode_p
Definition: GJonesMCol.h:182
const casacore::ArrayColumn< casacore::Double > & splineKnotsPhase() const
Definition: GJonesMCol.h:242
casacore::ScalarColumn< casacore::Int > & nPolyAmp()
Definition: GJonesMCol.h:164
casacore::ScalarColumn< casacore::Complex > scaleFactor_p
Definition: GJonesMCol.h:107
casacore::ScalarColumn< casacore::Int > nKnotsAmp_p
Private column accessors.
Definition: GJonesMCol.h:256
const casacore::ScalarColumn< casacore::Int > & nKnotsAmp() const
Read-only column accessors.
Definition: GJonesMCol.h:238
casacore::ArrayColumn< casacore::Double > & polyCoeffPhase()
Definition: GJonesMCol.h:167
GJonesMCol: RW GJones cal_main column access.
GJonesSplineTable: GJonesSpline calibration table access/creation.
Definition: GJonesTable.h:125
casacore::ScalarColumn< casacore::String > & polyType()
Read-write column accessors.
Definition: GJonesMCol.h:161
const casacore::ScalarColumn< casacore::Complex > & scaleFactor() const
Definition: GJonesMCol.h:86
virtual ~ROGJonesPolyMCol()
Default destructor.
Definition: GJonesMCol.h:81
casacore::ArrayColumn< casacore::Double > polyCoeffAmp_p
Definition: GJonesMCol.h:186
GJonesPolyMCol()
Prohibit public use of the null constructor, which does not produce a usable object.
Definition: GJonesMCol.h:173
ROGJonesPolyMCol()
Prohibit public use of the null constructor, which does not produce a usable object.
Definition: GJonesMCol.h:97