casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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: 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_SDFITSHANDLER_H
30 #define MS_SDFITSHANDLER_H
31 
32 #include <casacore/casa/aips.h>
36 
37 namespace casacore { //# NAMESPACE CASACORE - BEGIN
38 
39 //# Forward Declarations
40 class CopyRecordToTable;
41 class MeasurementSet;
42 class Record;
43 class Table;
44 
45 template <class T> class Vector;
46 
47 // <summary>
48 // </summary>
49 
50 // <use visibility=local> or <use visibility=export>
51 
52 // <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
53 // </reviewed>
54 
55 // <prerequisite>
56 // <li> SomeClass
57 // <li> SomeOtherClass
58 // <li> some concept
59 // </prerequisite>
60 //
61 // <etymology>
62 // </etymology>
63 //
64 // <synopsis>
65 // </synopsis>
66 //
67 // <example>
68 // </example>
69 //
70 // <motivation>
71 // </motivation>
72 //
73 // <templating arg=T>
74 // <li>
75 // <li>
76 // </templating>
77 //
78 // <thrown>
79 // <li>
80 // <li>
81 // </thrown>
82 //
83 // <todo asof="yyyy/mm/dd">
84 // <li> add this feature
85 // <li> fix this bug
86 // <li> start discussion of this possible extension
87 // </todo>
88 
90 {
91 public:
92  // default ctor is not attached to a MS and hence is useless until attached
93  SDFITSHandler();
94 
95  // attach this to a MS - any unhandled fields in row are handled here.
96  // This handler must be attached last.
97  SDFITSHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
98 
99  // copy ctor
100  SDFITSHandler(const SDFITSHandler &other);
101 
103 
104  // assignment operator, uses copy semantics
105  SDFITSHandler &operator=(const SDFITSHandler &other);
106 
107  // attach to a MS - any unhandled fields in row are handled here.
108  // This handler must be attached last.
109  void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
110 
111  // fill - a new row is always added
112  void fill(const Record &row, const MEpoch &time, const Double &interval);
113 private:
114  // the output table
116 
117  // the TIME column
119 
120  // the INTERVAL column
122 
123  // this copies everything from the row to the table
125 
126  // cleanup everything
127  void clearAll();
128 
129  // cleanup the row related stuff
130  void clearRow();
131 
132  // initialize everything
133  void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
134 
135  // intialize the row related stuff
136  void initRow(Vector<Bool> &handledCols, const Vector<String> &colNames, const Record &row);
137 
138  // get the required table desc given the unhandled columns and the row
139  TableDesc requiredTableDesc(Vector<Bool> &handledCols, Vector<String> &colNames, const Record &row);
140 };
141 
142 
143 } //# NAMESPACE CASACORE - END
144 
145 #endif
146 
147 
std::vector< double > Vector
Definition: ds9context.h:24
TableExprNode time(const TableExprNode &node)
Definition: ExprNode.h:1537
Main interface class to a read/write table.
Definition: Table.h:153
void fill(const Record &row, const MEpoch &time, const Double &interval)
fill - a new row is always added
void clearRow()
cleanup the row related stuff
void clearAll()
cleanup everything
A Measure: instant in time.
Definition: MEpoch.h:104
ScalarMeasColumn< MEpoch > timeMeas_p
the TIME column
TableDesc requiredTableDesc(Vector< Bool > &handledCols, Vector< String > &colNames, const Record &row)
get the required table desc given the unhandled columns and the row
double Double
Definition: aipstype.h:55
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS - any unhandled fields in row are handled here.
SDFITSHandler & operator=(const SDFITSHandler &other)
assignment operator, uses copy semantics
A hierarchical collection of named fields of various types.
Definition: Record.h:180
ScalarQuantColumn< Double > intervalQuant_p
the INTERVAL column
CopyRecordToTable * copier_p
this copies everything from the row to the table
A Table intended to hold astronomical data (a set of Measurements).
SDFITSHandler()
default ctor is not attached to a MS and hence is useless until attached
Define the structure of a Casacore table.
Definition: TableDesc.h:187
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
void initRow(Vector< Bool > &handledCols, const Vector< String > &colNames, const Record &row)
intialize the row related stuff
Copies fields from a Record to columns of a Table.
Definition: CopyRecord.h:80
#define casacore
&lt;X11/Intrinsic.h&gt; #defines true, false, casacore::Bool, and String.
Definition: X11Intrinsic.h:42
Table * tab_p
the output table