casacore
Loading...
Searching...
No Matches
SDAntennaHandler.h
Go to the documentation of this file.
1//# SDAntennaFiller.h: fills the ANTENNA table for the SDFITS filler
2//# Copyright (C) 2000
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 addressed 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#ifndef MS_SDANTENNAHANDLER_H
27#define MS_SDANTENNAHANDLER_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/Containers/RecordField.h>
31#include <casacore/casa/BasicSL/String.h>
32#include <casacore/measures/Measures/MPosition.h>
33#include <casacore/casa/Arrays/Array.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class ColumnsIndex;
39class MeasurementSet;
40class MSAntenna;
41class MSAntennaColumns;
42class Record;
43
44// <summary>
45// </summary>
46
47// <use visibility=local> or <use visibility=export>
48
49// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
50// </reviewed>
51
52// <prerequisite>
53// <li> SomeClass
54// <li> SomeOtherClass
55// <li> some concept
56// </prerequisite>
57//
58// <etymology>
59// </etymology>
60//
61// <synopsis>
62// </synopsis>
63//
64// <example>
65// </example>
66//
67// <motivation>
68// </motivation>
69//
70// <templating arg=T>
71// <li>
72// <li>
73// </templating>
74//
75// <thrown>
76// <li>
77// <li>
78// </thrown>
79//
80// <todo asof="yyyy/mm/dd">
81// <li> add this feature
82// <li> fix this bug
83// <li> start discussion of this possible extension
84// </todo>
85
87{
88public:
89 // default ctor is not attached to a MS and hence is useless until attached
91
92 // attach this to a MS, mark the appropriate columns as handled given
93 // the indicated row
94 SDAntennaHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
95
96 // copy ctor
98
100
101 // assignment operator, uses copy semantics
103
104 // attach to a MS, mark the appropriate columns as handled given the
105 void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
106
107 // reset internals given indicated row, use the same MS
108 void resetRow(const Record &row);
109
110 // fill - a new row is added only when necessary
111 void fill(const Record &row);
112
113 // get the current antenna ID
115
116 // get the telescope name
118
119 // get the telescope position
121private:
129
131
132 // pointers to fields in record, only used if attached
134
135 // telescope position might be a double or float,
136 // just remember its location
138
141
142 // fields which might exist if this SDFITS was converted from an MS using ms2sdfits
148
149 // I expect these will never be used, nevertheless, put them here just in case I'm wrong
152
153 // cleanup everything
154 void clearAll();
155
156 // cleanup things which depend on the row description being fixed
157 void clearRow();
158
159 // initialize everything
160 void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
161
162 // initialize the things which depend on the row
163 void initRow(Vector<Bool> &handledCols, const Record &row);
164};
165
166
167} //# NAMESPACE CASACORE - END
168
169#endif
170
171
Read-Only access to an individual field from a Record.
RecordFieldPtr< Double > dishDiameterKey_p
void clearAll()
cleanup everything
RecordFieldPtr< String > nameKey_p
Int siteLongFldNum_p
telescope position might be a double or float, just remember its location
Int antennaId()
get the current antenna ID
RORecordFieldPtr< String > telescopField_p
pointers to fields in record, only used if attached
SDAntennaHandler(const SDAntennaHandler &other)
copy ctor
SDAntennaHandler(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach this to a MS, mark the appropriate columns as handled given the indicated row
RecordFieldPtr< String > mountKey_p
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, mark the appropriate columns as handled given the
RecordFieldPtr< Int > orbitIdKey_p
RORecordFieldPtr< Array< Double > > positionField_p
void clearRow()
cleanup things which depend on the row description being fixed
SDAntennaHandler()
default ctor is not attached to a MS and hence is useless until attached
RORecordFieldPtr< String > stationField_p
RORecordFieldPtr< Int > orbitIdField_p
RORecordFieldPtr< String > msNameField_p
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
MSAntennaColumns * msAntCols_p
const MPosition & telescopePosition()
get the telescope position
void addPhasedArrayIdColumn()
I expect these will never be used, nevertheless, put them here just in case I'm wrong.
String telescopeName()
get the telescope name
RORecordFieldPtr< Double > dishDiameterField_p
void fill(const Record &row)
fill - a new row is added only when necessary
RecordFieldPtr< Int > phasedIdKey_p
void resetRow(const Record &row)
reset internals given indicated row, use the same MS
RecordFieldPtr< Bool > flagRowKey_p
RORecordFieldPtr< Array< Double > > offsetField_p
RORecordFieldPtr< Int > phasedArrayIdField_p
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize the things which depend on the row
RORecordFieldPtr< String > mountField_p
fields which might exist if this SDFITS was converted from an MS using ms2sdfits
SDAntennaHandler & operator=(const SDAntennaHandler &other)
assignment operator, uses copy semantics
RecordFieldPtr< String > stationKey_p
RORecordFieldPtr< Bool > flagRowField_p
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
int Int
Definition aipstype.h:48