casacore
Loading...
Searching...
No Matches
SDSourceHandler.h
Go to the documentation of this file.
1//# SDSourceFiller.h: fills the SOURCE 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_SDSOURCEHANDLER_H
27#define MS_SDSOURCEHANDLER_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/Arrays/ArrayFwd.h>
31#include <casacore/casa/Containers/RecordField.h>
32
33namespace casacore { //# NAMESPACE CASACORE - BEGIN
34
35//# Forward Declarations
36class ColumnsIndex;
37class MeasurementSet;
38class MSSource;
39class MSSourceColumns;
40class Record;
41
42// <summary>
43// </summary>
44
45// <use visibility=local> or <use visibility=export>
46
47// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
48// </reviewed>
49
50// <prerequisite>
51// <li> SomeClass
52// <li> SomeOtherClass
53// <li> some concept
54// </prerequisite>
55//
56// <etymology>
57// </etymology>
58//
59// <synopsis>
60// </synopsis>
61//
62// <example>
63// </example>
64//
65// <motivation>
66// </motivation>
67//
68// <templating arg=T>
69// <li>
70// <li>
71// </templating>
72//
73// <thrown>
74// <li>
75// <li>
76// </thrown>
77//
78// <todo asof="yyyy/mm/dd">
79// <li> add this feature
80// <li> fix this bug
81// <li> start discussion of this possible extension
82// </todo>
83
85{
86public:
87 // default ctor is not attached to a MS and hence is useless until attached
89
90 // attach this to a MS, marking fields in row which are explicitly handled here
91 SDSourceHandler(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
92
93 // copy ctor
95
97
98 // assignment operator, uses copy semantics
100
101 // attach to a MS, the handledCols and row arguments are ignored here
102 void attach(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
103
104 // reset internals given indicated row, use the same MS; just resets the id pointer
105 void resetRow(const Record &);
106
107 // fill - a source is unique in source name and code
108 void fill(const Record &row, Int spectralWindowId);
109
110 // get the current source ID
112private:
117
118 // the current source ID
120
121 // the next source ID to use
123
124 // fields possibly mined from the SDFITS row
125 // floating point fields that we can't be certain of their type
127 // String fields
129
130 // which optional colums exist
132
133 // fields which might come from a pre-existin MS
137
138 // cleanup everything
139 void clearAll();
140
141 // clean up items related to the row
142 void clearRow();
143
144 // initialize everything
145 void initAll(MeasurementSet &ms, Vector<Bool> &handledCols, const Record &row);
146
147 // initialize the stuff dependent on the row
148 void initRow(Vector<Bool> &handledCols, const Record &row);
149};
150
151
152} //# NAMESPACE CASACORE - END
153
154#endif
155
156
Read-Only access to an individual field from a Record.
SDSourceHandler(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach this to a MS, marking fields in row which are explicitly handled here
Int sourceId_p
the current source ID
Int nextSourceId_p
the next source ID to use
void fill(const Record &row, Int spectralWindowId)
fill - a source is unique in source name and code
void attach(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
attach to a MS, the handledCols and row arguments are ignored here
RecordFieldPtr< String > codeKey_p
RORecordFieldPtr< Array< Double > > properMotionField_p
void initAll(MeasurementSet &ms, Vector< Bool > &handledCols, const Record &row)
initialize everything
Int sourceId()
get the current source ID
SDSourceHandler()
default ctor is not attached to a MS and hence is useless until attached
RORecordFieldPtr< String > object_p
RORecordFieldPtr< String > obsmode_p
void clearAll()
cleanup everything
RORecordFieldPtr< String > molecule_p
RecordFieldPtr< String > nameKey_p
RORecordFieldPtr< Int > calibrationGroupField_p
fields which might come from a pre-existin MS
SDSourceHandler & operator=(const SDSourceHandler &other)
assignment operator, uses copy semantics
MSSourceColumns * msSourceCols_p
RORecordFieldPtr< Array< Double > > directionField_p
RORecordFieldPtr< Array< Double > > positionField_p
RORecordFieldPtr< String > transiti_p
String fields.
void clearRow()
clean up items related to the row
RORecordFieldPtr< Double > intervalField_p
void resetRow(const Record &)
reset internals given indicated row, use the same MS; just resets the id pointer
void initRow(Vector< Bool > &handledCols, const Record &row)
initialize the stuff dependent on the row
RORecordFieldPtr< Double > timeField_p
SDSourceHandler(const SDSourceHandler &other)
copy ctor
RORecordFieldPtr< Int > pulsarIdField_p
Int restfreq_p
fields possibly mined from the SDFITS row floating point fields that we can't be certain of their typ...
Bool hasTransition_p
which optional colums exist
this file contains all the compiler specific defines
Definition mainpage.dox:28
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40