casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SDObservationHandler.h
Go to the documentation of this file.
1 //# SDObservationFiller.h: fills the OBSERVATION 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: 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_SDOBSERVATIONHANDLER_H
30 #define MS_SDOBSERVATIONHANDLER_H
31 
32 #include <casacore/casa/aips.h>
35 
36 namespace casacore { //# NAMESPACE CASACORE - BEGIN
37 
38 //# Forward Declarations
39 class ColumnsIndex;
40 class MeasurementSet;
41 class MSObservation;
42 class MSObservationColumns;
43 class Record;
44 class String;
45 
46 template <class T> class Vector;
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, mark the appropriate columns as handled given
97  // the indicated row
98  SDObservationHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
99 
100  // copy ctor
102 
104 
105  // assignment operator, uses copy semantics
107 
108  // attach to a MS, mark the appropriate columns as handled given the row
109  void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
110 
111  // reset internals given indicated row, use the same MS
112  void resetRow(const Record &row);
113 
114  // fill - a new row is added only when necessary
115  void fill(const Record &row, const String &telescopeName, const Vector<Double> &timeRange);
116 
117  // get the current observation ID
119 
120  // update the time range
121  void updateTimeRange(const Vector<Double> &timeRange);
122 private:
127 
130 
132 
134 
135  // pointers to fields in record, only used if attached
140 
141  // cleanup everything
142  void clearAll();
143 
144  // cleanup things which depend on the row description being fixed
145  void clearRow();
146 
147  // initialize everything
148  void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
149 
150  // initialize the things which depend on the row
151  void initRow(Vector<Bool> &handledCols, const Record &row);
152 
153  // initialize the index
154  void makeIndex();
155 };
156 
157 
158 } //# NAMESPACE CASACORE - END
159 
160 #endif
161 
162 
MSObservationColumns * msObsCols_p
RORecordFieldPtr< Array< Double > > timeRange_p
RORecordFieldPtr< String > observer_p
pointers to fields in record, only used if attached
Index to one or more columns in a table.
Definition: ColumnsIndex.h:227
RecordFieldPtr< Bool > flagRowKey_p
int Int
Definition: aipstype.h:50
std::vector< double > Vector
Definition: ds9context.h:24
RORecordFieldPtr< String > obsid_p
A Table intended to hold a MeasurementSet OBSERVATION table.
Definition: MSObservation.h:78
A class to provide easy read-write access to MSObservation columns.
Definition: MSObsColumns.h:181
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, mark the appropriate columns as handled given the row
void clearAll()
cleanup everything
Int observationId()
get the current observation ID
RecordFieldPtr< String > observerKey_p
ScalarColumn< String > nsObsIdCol_p
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
RORecordFieldPtr< Double > releaseDate_p
SDObservationHandler & operator=(const SDObservationHandler &other)
assignment operator, uses copy semantics
Access to an individual field in a record.
Definition: ColumnsIndex.h:44
RORecordFieldPtr< String > projid_p
RORecordFieldPtr< Bool > flagRow_p
RecordFieldPtr< Double > releaseDateKey_p
void updateTimeRange(const Vector< Double > &timeRange)
update the time range
A hierarchical collection of named fields of various types.
Definition: Record.h:180
void fill(const Record &row, const String &telescopeName, const Vector< Double > &timeRange)
fill - a new row is added only when necessary
RecordFieldPtr< String > projectKey_p
A Table intended to hold astronomical data (a set of Measurements).
RecordFieldPtr< String > ns_obsidKey_p
void clearRow()
cleanup things which depend on the row description being fixed
SDObservationHandler()
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
Access to a scalar table column with arbitrary data type.
Definition: MSFitsOutput.h:41
RecordFieldPtr< String > telescopeKey_p
void makeIndex()
initialize the index
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize the things which depend on the row
Read-Only access to an individual field from a Record.
Definition: RecordField.h:228
void resetRow(const Record &row)
reset internals given indicated row, use the same MS
#define casacore
&lt;X11/Intrinsic.h&gt; #defines true, false, casacore::Bool, and String.
Definition: X11Intrinsic.h:42