casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TimeVarVJMBuf.h
Go to the documentation of this file.
1 //# TimeVarVJMBuf.h: TimeVarVisJones calibration main table buffer
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_TIMEVARVJMBUF_H
30 #define CALIBRATION_TIMEVARVJMBUF_H
31 
33 
34 namespace casa { //# NAMESPACE CASA - BEGIN
35 
36 // <summary>
37 // TimeVarVisJonesMBuf: TimeVarVisJones calibration main table buffer
38 // </summary>
39 
40 // <use visibility=export>
41 
42 // <reviewed reviewer="" date="" tests="" demos="">
43 
44 // <prerequisite>
45 // <li> <linkto class="CalMainBuffer">CalMainBuffer</linkto> module
46 // <li> <linkto class="VisJonesMBuf">VisJonesMBuf</linkto> module
47 // </prerequisite>
48 //
49 // <etymology>
50 // From "time-variable visibility Jones matrix", "cal main table" and "buffer"
51 // </etymology>
52 //
53 // <synopsis>
54 // The TimeVarVisJonesMBuf class holds a buffer, optionally connected to a
55 // TimeVarVisJones calibration main table iterator (of base type CalIterBase).
56 // Specializations solvable VisJones calibration table formats are provided
57 // through inheritance.
58 // </synopsis>
59 //
60 // <example>
61 // <srcblock>
62 // </srcblock>
63 // </example>
64 //
65 // <motivation>
66 // Encapsulate TimeVarVisJones calibration main table data buffers.
67 // </motivation>
68 //
69 // <todo asof="01/08/01">
70 // (i) Deal with non-standard columns.
71 // </todo>
72 
74 {
75  public:
76  // Default constructor. No connection to an underlying
77  // calibration table iterator in this case.
79 
80  // Construct from a set of calibration buffer indices and
81  // their specified values. Non-index columns will be set
82  // to default values, and there is no connection to an
83  // underlying calibration table iterator in this case.
86 
87  // Construct from a calibration table iterator. The calibration
88  // buffer will remain synchronized with the iterator.
90 
91  protected:
92 
93  private:
94 };
95 
96 // <summary>
97 // PJonesMBuf: PJones calibration main table buffer
98 // </summary>
99 
100 // <use visibility=export>
101 
102 // <reviewed reviewer="" date="" tests="" demos="">
103 
104 // <prerequisite>
105 // <li> <linkto class="CalMainBuffer">CalMainBuffer</linkto> module
106 // <li> <linkto class="TimeVarVisJonesMBuf">TimeVarVisJonesMBuf</linkto> module
107 // </prerequisite>
108 //
109 // <etymology>
110 // From "PJones matrix", "cal main table" and "buffer"
111 // </etymology>
112 //
113 // <synopsis>
114 // The PJonesMBuf class holds a buffer, optionally connected to a
115 // PJones calibration main table iterator (of base type CalIterBase).
116 // The PJones matrix contains parallactic angle correction terms.
117 // </synopsis>
118 //
119 // <example>
120 // <srcblock>
121 // </srcblock>
122 // </example>
123 //
124 // <motivation>
125 // Encapsulate PJones calibration main table data buffers.
126 // </motivation>
127 //
128 // <todo asof="01/08/01">
129 // (i) Deal with non-standard columns.
130 // </todo>
131 
133 {
134  public:
135  // Default constructor. No connection to an underlying
136  // calibration table iterator in this case.
137  PJonesMBuf();
138 
139  // Construct from a set of calibration buffer indices and
140  // their specified values. Non-index columns will be set
141  // to default values, and there is no connection to an
142  // underlying calibration table iterator in this case.
143  PJonesMBuf (const casacore::Vector<casacore::Int>& calIndices,
144  const casacore::Block<casacore::Vector<casacore::Int> >& indexValues);
145 
146  // Construct from a calibration table iterator. The calibration
147  // buffer will remain synchronized with the iterator.
148  PJonesMBuf (CalIterBase& calIter);
149 
150  protected:
151 
152  private:
153 };
154 
155 // <summary>
156 // CJonesMBuf: CJones calibration main table buffer
157 // </summary>
158 
159 // <use visibility=export>
160 
161 // <reviewed reviewer="" date="" tests="" demos="">
162 
163 // <prerequisite>
164 // <li> <linkto class="CalMainBuffer">CalMainBuffer</linkto> module
165 // <li> <linkto class="TimeVarVisJonesMBuf">TimeVarVisJonesMBuf</linkto> module
166 // </prerequisite>
167 //
168 // <etymology>
169 // From "CJones matrix", "cal main table" and "buffer"
170 // </etymology>
171 //
172 // <synopsis>
173 // The CJonesMBuf class holds a buffer, optionally connected to a
174 // CJones calibration main table iterator (of base type CalIterBase).
175 // The CJones matrix contains polarization configuration information.
176 // </synopsis>
177 //
178 // <example>
179 // <srcblock>
180 // </srcblock>
181 // </example>
182 //
183 // <motivation>
184 // Encapsulate CJones calibration main table data buffers.
185 // </motivation>
186 //
187 // <todo asof="01/08/01">
188 // (i) Deal with non-standard columns.
189 // </todo>
190 
192 {
193  public:
194  // Default constructor. No connection to an underlying
195  // calibration table iterator in this case.
196  CJonesMBuf();
197 
198  // Construct from a set of calibration buffer indices and
199  // their specified values. Non-index columns will be set
200  // to default values, and there is no connection to an
201  // underlying calibration table iterator in this case.
202  CJonesMBuf (const casacore::Vector<casacore::Int>& calIndices,
203  const casacore::Block<casacore::Vector<casacore::Int> >& indexValues);
204 
205  // Construct from a calibration table iterator. The calibration
206  // buffer will remain synchronized with the iterator.
207  CJonesMBuf (CalIterBase& calIter);
208 
209  protected:
210 
211  private:
212 };
213 
214 
215 } //# NAMESPACE CASA - END
216 
217 #endif
PJonesMBuf: PJones calibration main table buffer.
CJonesMBuf()
Default constructor.
CalIterBase: Base class for calibration table iterators.
Definition: CalIterBase.h:74
PJonesMBuf()
Default constructor.
TimeVarVisJonesMBuf()
Default constructor.
VisJonesMBuf: VisJones calibration main table buffer.
Definition: VisJonesMBuf.h:72
simple 1-D array
TimeVarVisJonesMBuf: TimeVarVisJones calibration main table buffer.
Definition: TimeVarVJMBuf.h:73
CJonesMBuf: CJones calibration main table buffer.