casacore
Loading...
Searching...
No Matches
SDPointingHandler.h
Go to the documentation of this file.
1//# SDPointingFiller.h: fills the POINTING 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_SDPOINTINGHANDLER_H
27#define MS_SDPOINTINGHANDLER_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/Containers/RecordField.h>
31#include <casacore/measures/Measures/MDirection.h>
32#include <casacore/casa/Arrays/Matrix.h>
33#include <casacore/casa/Arrays/ArrayFwd.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class MeasurementSet;
39class MSPointing;
40class MSPointingColumns;
41class Record;
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, mark fields row which are handled here
92 SDPointingHandler(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, mark fields in row which are handled here
103 void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
104
105 // reset internals given indicated row, use the same MS
106 void resetRow(const Record &);
107
108 // fill - a new row is added when
109 // a) the name changes
110 // b) the time changes such that it would be outside of the new interval when
111 // added to the old interval (i.e. intervals do not overlap)
112 // c) the direction changes
113 // d) the antennaId changes
114 // There is no look-back to see if a previous row could be re-used
115 void fill(const Record &row, Int antennaId, Double time, const Vector<Double> &timeRange,
116 const MDirection &direction, const MeasFrame &frame);
117
118 // convenience functions for use when filling the FIELD table, which is mostly
119 // just a clone of this table for SD data
120 Int nrow() {return rownr_p+1;}
121 const String &name() {return name_p;}
124 Double time() {return time_p;}
125private:
128
130
136
138
140
142
143 // these might come from an MS table
144 // this can just come from an MS v1 table
149
150 // cleanup everything
151 void clearAll();
152
153 // cleanup things which depend on the row
154 void clearRow();
155
156 // initialize everything
157 void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
158
159 // initialize everythign which depends on row
160 void initRow(Vector<Bool> &handledCols, const Record &row);
161};
162
163
164} //# NAMESPACE CASACORE - END
165
166#endif
167
168
virtual uInt getType() const
Return the type of the reference Caution: the following should really be (and should be interpreted ...
Read-Only access to an individual field from a Record.
void resetRow(const Record &)
reset internals given indicated row, use the same MS
void clearAll()
cleanup everything
RORecordFieldPtr< String > objectField_p
SDPointingHandler(const SDPointingHandler &other)
copy ctor
const Matrix< Double > & directionPoly()
RORecordFieldPtr< Double > intervalField_p
Int nrow()
convenience functions for use when filling the FIELD table, which is mostly just a clone of this tabl...
RORecordFieldPtr< Double > timeField_p
SDPointingHandler(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach this to a MS, mark fields row which are handled here
void fill(const Record &row, Int antennaId, Double time, const Vector< Double > &timeRange, const MDirection &direction, const MeasFrame &frame)
fill - a new row is added when a) the name changes b) the time changes such that it would be outside ...
MSPointingColumns * msPointingCols_p
RORecordFieldPtr< String > nameField_p
RORecordFieldPtr< Array< Double > > pointingDirRateField_p
these might come from an MS table this can just come from an MS v1 table
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize everythign which depends on row
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, mark fields in row which are handled here
void clearRow()
cleanup things which depend on the row
SDPointingHandler & operator=(const SDPointingHandler &other)
assignment operator, uses copy semantics
RORecordFieldPtr< Bool > trackingField_p
SDPointingHandler()
default ctor is not attached to a MS and hence is useless until attached
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
double Double
Definition aipstype.h:53