casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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: 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 MS_SDFIELDHANDLER_H
30 #define MS_SDFIELDHANDLER_H
31 
32 #include <casacore/casa/aips.h>
34 
35 namespace casacore { //# NAMESPACE CASACORE - BEGIN
36 
37 //# Forward Declarations
38 class MeasurementSet;
39 class MSField;
40 class MSFieldColumns;
41 class String;
42 class Record;
43 class ColumnsIndex;
44 
45 template <class T> class Vector;
46 template <class T> class Matrix;
47 
48 // <summary>
49 // </summary>
50 
51 // <use visibility=local> or <use visibility=export>
52 
53 // <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
54 // </reviewed>
55 
56 // <prerequisite>
57 // <li> SomeClass
58 // <li> SomeOtherClass
59 // <li> some concept
60 // </prerequisite>
61 //
62 // <etymology>
63 // </etymology>
64 //
65 // <synopsis>
66 // </synopsis>
67 //
68 // <example>
69 // </example>
70 //
71 // <motivation>
72 // </motivation>
73 //
74 // <templating arg=T>
75 // <li>
76 // <li>
77 // </templating>
78 //
79 // <thrown>
80 // <li>
81 // <li>
82 // </thrown>
83 //
84 // <todo asof="yyyy/mm/dd">
85 // <li> add this feature
86 // <li> fix this bug
87 // <li> start discussion of this possible extension
88 // </todo>
89 
91 {
92 public:
93  // default ctor is not attached to a MS and hence is useless until attached
95 
96  // attach this to a MS - no columns are explicitly handled here
97  SDFieldHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
98 
99  // copy ctor
100  SDFieldHandler(const SDFieldHandler &other);
101 
103 
104  // assignment operator, uses copy semantics
105  SDFieldHandler &operator=(const SDFieldHandler &other);
106 
107  // attach to a MS, the handledCols and row arguments are ignored here
108  void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
109 
110  // reset internals given indicated row, use the same MS; just resets the id pointer
111  void resetRow(const Record &row);
112 
113  // fill - a new row is added at each call unless the data is from a previous MS fill
114  // in which case an existing MAIN_FIELD_ID is used to see if that existing row might
115  // be reused
116  void fill(const Record &row, const String &name, Int directionRefType,
117  const Matrix<Double> &directionPoly, Double time, Int sourceId);
118 
119  // get the current field ID
120  Int fieldId() {return rownr_p;}
121 private:
124 
126 
127  // fields which might be present if the data is originally from a MS
135 
140 
141  // cleanup everything
142  void clearAll();
143 
144  void clearRow();
145 
146  // initialize everything
147  void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
148 
149  // initialize things which depend on the row
150  void initRow(Vector<Bool> &handledCols, const Record &row);
151 };
152 
153 
154 } //# NAMESPACE CASACORE - END
155 
156 #endif
157 
158 
Index to one or more columns in a table.
Definition: ColumnsIndex.h:227
int Int
Definition: aipstype.h:50
MSFieldColumns * msFieldCols_p
std::vector< double > Vector
Definition: ds9context.h:24
TableExprNode time(const TableExprNode &node)
Definition: ExprNode.h:1537
RORecordFieldPtr< Double > timeField_p
RORecordFieldPtr< String > nameField_p
SDFieldHandler()
default ctor is not attached to a MS and hence is useless until attached
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize things which depend on the row
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
ABSTRACT CLASSES Abstract class for colors Any implementation of color should be able to provide a hexadecimal form of the if a human readable name(i.e."black").In many places throughout the plotter
void clearAll()
cleanup everything
A class to provide easy read-write access to MSField columns.
RORecordFieldPtr< Array< Double > > referenceDirField_p
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, the handledCols and row arguments are ignored here
RORecordFieldPtr< Array< Double > > phaseDirRateField_p
RORecordFieldPtr< Array< Double > > referenceDirRateField_p
Access to an individual field in a record.
Definition: ColumnsIndex.h:44
double Double
Definition: aipstype.h:55
RORecordFieldPtr< Int > fieldIdField_p
fields which might be present if the data is originally from a MS
A hierarchical collection of named fields of various types.
Definition: Record.h:180
RecordFieldPtr< Int > sourceIdKey_p
RORecordFieldPtr< Bool > flagRowField_p
A Table intended to hold a MeasurementSet FIELD table.
Definition: MSField.h:78
A Table intended to hold astronomical data (a set of Measurements).
RecordFieldPtr< String > nameKey_p
SDFieldHandler & operator=(const SDFieldHandler &other)
assignment operator, uses copy semantics
String: the storage and methods of handling collections of characters.
Definition: String.h:223
RORecordFieldPtr< Array< Double > > delayDirRateField_p
void resetRow(const Record &row)
reset internals given indicated row, use the same MS; just resets the id pointer
RecordFieldPtr< Double > timeKey_p
Int fieldId()
get the current field ID
RORecordFieldPtr< Array< Double > > delayDirField_p
RORecordFieldPtr< Array< Double > > phaseDirField_p
RORecordFieldPtr< String > codeField_p
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...
#define casacore
&lt;X11/Intrinsic.h&gt; #defines true, false, casacore::Bool, and String.
Definition: X11Intrinsic.h:42