casacore
Loading...
Searching...
No Matches
SDFieldHandler.h
Go to the documentation of this file.
1//# SDFieldFiller.h: fills the FIELD table for the SDFITS filler
2//# Copyright (C) 2000,2001
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_SDFIELDHANDLER_H
27#define MS_SDFIELDHANDLER_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/Arrays/ArrayFwd.h>
31#include <casacore/casa/Containers/RecordField.h>
32
33namespace casacore { //# NAMESPACE CASACORE - BEGIN
34
35//# Forward Declarations
36class MeasurementSet;
37class MSField;
38class MSFieldColumns;
39class String;
40class Record;
41class ColumnsIndex;
42
43// <summary>
44// </summary>
45
46// <use visibility=local> or <use visibility=export>
47
48// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
49// </reviewed>
50
51// <prerequisite>
52// <li> SomeClass
53// <li> SomeOtherClass
54// <li> some concept
55// </prerequisite>
56//
57// <etymology>
58// </etymology>
59//
60// <synopsis>
61// </synopsis>
62//
63// <example>
64// </example>
65//
66// <motivation>
67// </motivation>
68//
69// <templating arg=T>
70// <li>
71// <li>
72// </templating>
73//
74// <thrown>
75// <li>
76// <li>
77// </thrown>
78//
79// <todo asof="yyyy/mm/dd">
80// <li> add this feature
81// <li> fix this bug
82// <li> start discussion of this possible extension
83// </todo>
84
86{
87public:
88 // default ctor is not attached to a MS and hence is useless until attached
90
91 // attach this to a MS - no columns are explicitly handled here
92 SDFieldHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
93
94 // copy ctor
96
98
99 // assignment operator, uses copy semantics
101
102 // attach to a MS, the handledCols and row arguments are ignored here
103 void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
104
105 // reset internals given indicated row, use the same MS; just resets the id pointer
106 void resetRow(const Record &row);
107
108 // fill - a new row is added at each call unless the data is from a previous MS fill
109 // in which case an existing MAIN_FIELD_ID is used to see if that existing row might
110 // be reused
111 void fill(const Record &row, const String &name, Int directionRefType,
112 const Matrix<Double> &directionPoly, Double time, Int sourceId);
113
114 // get the current field ID
115 Int fieldId() {return rownr_p;}
116private:
119
121
122 // fields which might be present if the data is originally from a MS
130
135
136 // cleanup everything
137 void clearAll();
138
139 void clearRow();
140
141 // initialize everything
142 void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
143
144 // initialize things which depend on the row
145 void initRow(Vector<Bool> &handledCols, const Record &row);
146};
147
148
149} //# NAMESPACE CASACORE - END
150
151#endif
152
153
Read-Only access to an individual field from a Record.
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize things which depend on the row
RecordFieldPtr< Int > sourceIdKey_p
RORecordFieldPtr< Array< Double > > referenceDirField_p
RORecordFieldPtr< Array< Double > > referenceDirRateField_p
RORecordFieldPtr< Array< Double > > phaseDirField_p
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
MSFieldColumns * msFieldCols_p
RORecordFieldPtr< Bool > flagRowField_p
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, the handledCols and row arguments are ignored here
SDFieldHandler(const SDFieldHandler &other)
copy ctor
RORecordFieldPtr< String > nameField_p
RORecordFieldPtr< String > codeField_p
void resetRow(const Record &row)
reset internals given indicated row, use the same MS; just resets the id pointer
void clearAll()
cleanup everything
RORecordFieldPtr< Array< Double > > delayDirRateField_p
SDFieldHandler()
default ctor is not attached to a MS and hence is useless until attached
Int fieldId()
get the current field ID
RecordFieldPtr< Double > timeKey_p
RecordFieldPtr< String > nameKey_p
RORecordFieldPtr< Array< Double > > delayDirField_p
RORecordFieldPtr< Int > fieldIdField_p
fields which might be present if the data is originally from a MS
SDFieldHandler & operator=(const SDFieldHandler &other)
assignment operator, uses copy semantics
void fill(const Record &row, const String &name, Int directionRefType, const Matrix< Double > &directionPoly, Double time, Int sourceId)
fill - a new row is added at each call unless the data is from a previous MS fill in which case an ex...
RORecordFieldPtr< Array< Double > > phaseDirRateField_p
RORecordFieldPtr< Double > timeField_p
SDFieldHandler(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach this to a MS - no columns are explicitly handled here
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
TableExprNode time(const TableExprNode &node)
Definition ExprNode.h:1584
int Int
Definition aipstype.h:48
double Double
Definition aipstype.h:53