casacore
|
#include <MSAntennaColumns.h>
Public Member Functions | |
MSAntennaColumns (const MSAntenna &msAntenna) | |
Create a columns object that accesses the data in the specified Table. More... | |
~MSAntennaColumns () | |
The destructor does nothing special. More... | |
ScalarColumn< Double > & | dishDiameter () |
Access to required columns. More... | |
ScalarQuantColumn< Double > & | dishDiameterQuant () |
ScalarColumn< Bool > & | flagRow () |
ScalarColumn< String > & | mount () |
ScalarColumn< String > & | name () |
ArrayColumn< Double > & | offset () |
ArrayQuantColumn< Double > & | offsetQuant () |
ScalarMeasColumn< MPosition > & | offsetMeas () |
ArrayColumn< Double > & | position () |
ArrayQuantColumn< Double > & | positionQuant () |
ScalarMeasColumn< MPosition > & | positionMeas () |
ScalarColumn< String > & | station () |
ScalarColumn< String > & | type () |
const ScalarColumn< Double > & | dishDiameter () const |
Const access to required columns. More... | |
const ScalarQuantColumn< Double > & | dishDiameterQuant () const |
const ScalarColumn< Bool > & | flagRow () const |
const ScalarColumn< String > & | mount () const |
const ScalarColumn< String > & | name () const |
const ArrayColumn< Double > & | offset () const |
const ArrayQuantColumn< Double > & | offsetQuant () const |
const ScalarMeasColumn< MPosition > & | offsetMeas () const |
const ArrayColumn< Double > & | position () const |
const ArrayQuantColumn< Double > & | positionQuant () const |
const ScalarMeasColumn< MPosition > & | positionMeas () const |
const ScalarColumn< String > & | station () const |
const ScalarColumn< String > & | type () const |
ArrayColumn< Double > & | meanOrbit () |
Access to optional columns. More... | |
ScalarColumn< Int > & | orbitId () |
ScalarColumn< Int > & | phasedArrayId () |
const ArrayColumn< Double > & | meanOrbit () const |
Const access to optional columns. More... | |
const ScalarColumn< Int > & | orbitId () const |
const ScalarColumn< Int > & | phasedArrayId () const |
void | setPositionRef (MPosition::Types ref) |
set the position type for the POSITION column. More... | |
void | setOffsetRef (MPosition::Types ref) |
set the position type for the OFFSET column. More... | |
rownr_t | nrow () const |
Convenience function that returns the number of rows in any of the columns. More... | |
Int64 | matchAntenna (const MPosition &antennaPos, const Quantum< Double > &tolerance, Int64 tryRow=-1) |
returns the last row that contains an antenna at the specified position, to within the specified tolerance. More... | |
Int64 | matchAntenna (const String &antName, const MPosition &antennaPos, const Quantum< Double > &tolerance, Int64 tryRow=-1) |
Same as the previous function except that the antenna name must also match. More... | |
Int64 | matchAntennaAndStation (const String &antName, const String &stationName, const MPosition &antennaPos, const Quantum< Double > &tolerance, Int64 tryRow=-1) |
Same as the previous function except that the station name must also match. More... | |
Protected Member Functions | |
MSAntennaColumns () | |
void | attach (const MSAntenna &msAntenna) |
Private Member Functions | |
MSAntennaColumns (const MSAntennaColumns &) | |
MSAntennaColumns & | operator= (const MSAntennaColumns &) |
void | attachOptionalCols (const MSAntenna &msAntenna) |
Bool | matchName (rownr_t row, const String &antName) const |
Bool | matchStation (rownr_t row, const String &stationName) const |
Bool | matchPosition (rownr_t row, const Vector< Double > &antPosInM, const Double tolInM) const |
A class to provide easy access to MSAntenna columns
Public interface
MSAntennaColumns stands for MeasurementSet Antenna Table columns.
This class provides access to the columns in the MSAntenna Table, it does the declaration of all the Scalar and ArrayColumns with the correct types, so the application programmer doesn't have to worry about getting those right. There is an access function for every predefined column. Access to non-predefined columns will still have to be done with explicit declarations. See MSColumns for an example.
See MSColumns for the motivation.
Definition at line 79 of file MSAntennaColumns.h.
casacore::MSAntennaColumns::MSAntennaColumns | ( | const MSAntenna & | msAntenna | ) |
Create a columns object that accesses the data in the specified Table.
casacore::MSAntennaColumns::~MSAntennaColumns | ( | ) |
The destructor does nothing special.
|
protected |
|
private |
|
protected |
|
private |
|
inline |
Access to required columns.
Definition at line 91 of file MSAntennaColumns.h.
References dishDiameter_p.
|
inline |
Const access to required columns.
Definition at line 108 of file MSAntennaColumns.h.
References dishDiameter_p.
|
inline |
Definition at line 92 of file MSAntennaColumns.h.
References dishDiameterQuant_p.
|
inline |
Definition at line 109 of file MSAntennaColumns.h.
References dishDiameterQuant_p.
|
inline |
Definition at line 93 of file MSAntennaColumns.h.
References flagRow_p.
|
inline |
Definition at line 110 of file MSAntennaColumns.h.
References flagRow_p.
Int64 casacore::MSAntennaColumns::matchAntenna | ( | const MPosition & | antennaPos, |
const Quantum< Double > & | tolerance, | ||
Int64 | tryRow = -1 |
||
) |
returns the last row that contains an antenna at the specified position, to within the specified tolerance.
The reference frame of the supplied position must be the same as the one for the POSITION columns. If not an AipsError is thrown as such an argument will never match any row of the Table. The tolerance is the maximum allowed distance between the two positions and the supplied Quantum must have dimensions of length. This is checked when compiled in debug mode and an AipsError exception is thrown if the dimensions are wrong. Returns -1 if no match could be found. Flagged rows can never match. If tryRow is non-negative, then that row is tested to see if it matches before any others are tested. Setting tryRow to a positive value greater than the table length will throw an exception (AipsError), when compiled in debug mode.
Int64 casacore::MSAntennaColumns::matchAntenna | ( | const String & | antName, |
const MPosition & | antennaPos, | ||
const Quantum< Double > & | tolerance, | ||
Int64 | tryRow = -1 |
||
) |
Same as the previous function except that the antenna name must also match.
Int64 casacore::MSAntennaColumns::matchAntennaAndStation | ( | const String & | antName, |
const String & | stationName, | ||
const MPosition & | antennaPos, | ||
const Quantum< Double > & | tolerance, | ||
Int64 | tryRow = -1 |
||
) |
Same as the previous function except that the station name must also match.
|
private |
|
private |
|
inline |
Access to optional columns.
Definition at line 125 of file MSAntennaColumns.h.
References meanOrbit_p.
|
inline |
Const access to optional columns.
Definition at line 132 of file MSAntennaColumns.h.
References meanOrbit_p.
|
inline |
Definition at line 94 of file MSAntennaColumns.h.
References mount_p.
|
inline |
Definition at line 111 of file MSAntennaColumns.h.
References mount_p.
|
inline |
Definition at line 95 of file MSAntennaColumns.h.
References name_p.
|
inline |
Definition at line 112 of file MSAntennaColumns.h.
References name_p.
|
inline |
Convenience function that returns the number of rows in any of the columns.
Definition at line 148 of file MSAntennaColumns.h.
References dishDiameter_p, and casacore::TableColumn::nrow().
|
inline |
Definition at line 96 of file MSAntennaColumns.h.
References offset_p.
|
inline |
Definition at line 113 of file MSAntennaColumns.h.
References offset_p.
|
inline |
Definition at line 98 of file MSAntennaColumns.h.
References offsetMeas_p.
|
inline |
Definition at line 115 of file MSAntennaColumns.h.
References offsetMeas_p.
|
inline |
Definition at line 97 of file MSAntennaColumns.h.
References offsetQuant_p.
|
inline |
Definition at line 114 of file MSAntennaColumns.h.
References offsetQuant_p.
|
private |
|
inline |
Definition at line 126 of file MSAntennaColumns.h.
References orbitId_p.
|
inline |
Definition at line 133 of file MSAntennaColumns.h.
References orbitId_p.
|
inline |
Definition at line 127 of file MSAntennaColumns.h.
References phasedArrayId_p.
|
inline |
Definition at line 134 of file MSAntennaColumns.h.
References phasedArrayId_p.
|
inline |
Definition at line 99 of file MSAntennaColumns.h.
References position_p.
|
inline |
Definition at line 116 of file MSAntennaColumns.h.
References position_p.
|
inline |
Definition at line 101 of file MSAntennaColumns.h.
References positionMeas_p.
|
inline |
Definition at line 118 of file MSAntennaColumns.h.
References positionMeas_p.
|
inline |
Definition at line 100 of file MSAntennaColumns.h.
References positionQuant_p.
|
inline |
Definition at line 117 of file MSAntennaColumns.h.
References positionQuant_p.
void casacore::MSAntennaColumns::setOffsetRef | ( | MPosition::Types | ref | ) |
set the position type for the OFFSET column.
This can only be done when the table has no rows. Trying to do so at other times will throw an exception.
void casacore::MSAntennaColumns::setPositionRef | ( | MPosition::Types | ref | ) |
set the position type for the POSITION column.
This can only be done when the table has no rows. Trying to do so at other times will throw an exception.
|
inline |
Definition at line 102 of file MSAntennaColumns.h.
References station_p.
|
inline |
Definition at line 119 of file MSAntennaColumns.h.
References station_p.
|
inline |
Definition at line 103 of file MSAntennaColumns.h.
References type_p.
|
inline |
Definition at line 120 of file MSAntennaColumns.h.
References type_p.
|
private |
Definition at line 202 of file MSAntennaColumns.h.
Referenced by dishDiameter(), and nrow().
|
private |
Definition at line 220 of file MSAntennaColumns.h.
Referenced by dishDiameterQuant().
|
private |
Definition at line 203 of file MSAntennaColumns.h.
Referenced by flagRow().
|
private |
Definition at line 211 of file MSAntennaColumns.h.
Referenced by meanOrbit().
|
private |
Definition at line 204 of file MSAntennaColumns.h.
Referenced by mount().
|
private |
Definition at line 205 of file MSAntennaColumns.h.
Referenced by name().
|
private |
Definition at line 206 of file MSAntennaColumns.h.
Referenced by offset().
|
private |
Definition at line 216 of file MSAntennaColumns.h.
Referenced by offsetMeas().
|
private |
Definition at line 221 of file MSAntennaColumns.h.
Referenced by offsetQuant().
|
private |
Definition at line 212 of file MSAntennaColumns.h.
Referenced by orbitId().
|
private |
Definition at line 213 of file MSAntennaColumns.h.
Referenced by phasedArrayId().
|
private |
Definition at line 207 of file MSAntennaColumns.h.
Referenced by position().
|
private |
Definition at line 217 of file MSAntennaColumns.h.
Referenced by positionMeas().
|
private |
Definition at line 222 of file MSAntennaColumns.h.
Referenced by positionQuant().
|
private |
Definition at line 208 of file MSAntennaColumns.h.
Referenced by station().
|
private |
Definition at line 209 of file MSAntennaColumns.h.
Referenced by type().