casacore
Loading...
Searching...
No Matches
SDFITSHandler.h
Go to the documentation of this file.
1//# SDFITSFiller.h: fills all otherwise unhandled columns 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_SDFITSHANDLER_H
27#define MS_SDFITSHANDLER_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/measures/Measures/MEpoch.h>
31#include <casacore/measures/TableMeasures/ScalarQuantColumn.h>
32#include <casacore/measures/TableMeasures/ScalarMeasColumn.h>
33#include <casacore/casa/Arrays/ArrayFwd.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class CopyRecordToTable;
39class MeasurementSet;
40class Record;
41class Table;
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 - any unhandled fields in row are handled here.
92 // This handler must be attached last.
93 SDFITSHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
94
95 // copy ctor
97
99
100 // assignment operator, uses copy semantics
102
103 // attach to a MS - any unhandled fields in row are handled here.
104 // This handler must be attached last.
105 void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
106
107 // fill - a new row is always added
108 void fill(const Record &row, const MEpoch &time, const Double &interval);
109private:
110 // the output table
112
113 // the TIME column
115
116 // the INTERVAL column
118
119 // this copies everything from the row to the table
121
122 // cleanup everything
123 void clearAll();
124
125 // cleanup the row related stuff
126 void clearRow();
127
128 // initialize everything
129 void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
130
131 // intialize the row related stuff
132 void initRow(Vector<Bool> &handledCols, const Vector<String> &colNames, const Record &row);
133
134 // get the required table desc given the unhandled columns and the row
135 TableDesc requiredTableDesc(Vector<Bool> &handledCols, Vector<String> &colNames, const Record &row);
136};
137
138
139} //# NAMESPACE CASACORE - END
140
141#endif
142
143
SDFITSHandler & operator=(const SDFITSHandler &other)
assignment operator, uses copy semantics
void clearRow()
cleanup the row related stuff
ScalarQuantColumn< Double > intervalQuant_p
the INTERVAL column
TableDesc requiredTableDesc(Vector< Bool > &handledCols, Vector< String > &colNames, const Record &row)
get the required table desc given the unhandled columns and the row
void initRow(Vector< Bool > &handledCols, const Vector< String > &colNames, const Record &row)
intialize the row related stuff
Table * tab_p
the output table
ScalarMeasColumn< MEpoch > timeMeas_p
the TIME column
SDFITSHandler()
default ctor is not attached to a MS and hence is useless until attached
SDFITSHandler(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach this to a MS - any unhandled fields in row are handled here.
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
CopyRecordToTable * copier_p
this copies everything from the row to the table
SDFITSHandler(const SDFITSHandler &other)
copy ctor
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS - any unhandled fields in row are handled here.
void clearAll()
cleanup everything
void fill(const Record &row, const MEpoch &time, const Double &interval)
fill - a new row is always added
this file contains all the compiler specific defines
Definition mainpage.dox:28
TableExprNode time(const TableExprNode &node)
Definition ExprNode.h:1584
double Double
Definition aipstype.h:53