casa
$Rev:20696$
|
MSSelectableTable: An interface class used by MSSelection module to access the sub-tables and main-table columns of MS-like tables. More...
#include <MSSelectableTable.h>
Public Member Functions | |
MSSelectableTable () | |
MSSelectableTable (const Table &table) | |
virtual | ~MSSelectableTable () |
virtual void | setTable (const Table &table) |
const Table * | table () |
TableExprNode | col (const String &colName) |
virtual Bool | isMS ()=0 |
virtual const MSAntenna & | antenna ()=0 |
virtual const MSField & | field ()=0 |
virtual const MSSpectralWindow & | spectralWindow ()=0 |
virtual const MSDataDescription & | dataDescription ()=0 |
virtual const MSObservation & | observation ()=0 |
virtual String | columnName (MSMainEnums::PredefinedColumns nameEnum)=0 |
virtual const MeasurementSet * | asMS ()=0 |
virtual MSSelectableMainColumn * | mainColumns ()=0 |
Protected Attributes | |
const Table * | table_p |
MSSelectableTable: An interface class used by MSSelection module to access the sub-tables and main-table columns of MS-like tables.
Public interface
From "msselection" and "table".
This is a pure virtual base-class to provide a table-type agnostic interface to the MSSelection module to access sub-tables and main-table columns of MS-like tables.
To allow use of the MSSelection module for selection on any table that follows the general structure of the MS database. Via this class, minor differences in the database layout can be hidden from the MSSelection module. This also keeps MeasurementSet module from depending on other MS-like database implemention which may use the MSSelection module. Such usage will need to implement a specialization of MSSelectableTable and use it to instantiate the MSSelection object.
Definition at line 98 of file MSSelectableTable.h.
casa::MSSelectableTable::MSSelectableTable | ( | ) | [inline] |
Definition at line 101 of file MSSelectableTable.h.
casa::MSSelectableTable::MSSelectableTable | ( | const Table & | table | ) | [inline] |
Definition at line 102 of file MSSelectableTable.h.
virtual casa::MSSelectableTable::~MSSelectableTable | ( | ) | [inline, virtual] |
Definition at line 103 of file MSSelectableTable.h.
virtual const MSAntenna& casa::MSSelectableTable::antenna | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual const MeasurementSet* casa::MSSelectableTable::asMS | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
TableExprNode casa::MSSelectableTable::col | ( | const String & | colName | ) | [inline] |
Definition at line 107 of file MSSelectableTable.h.
References casa::Table::col(), and table().
virtual String casa::MSSelectableTable::columnName | ( | MSMainEnums::PredefinedColumns | nameEnum | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual const MSDataDescription& casa::MSSelectableTable::dataDescription | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual const MSField& casa::MSSelectableTable::field | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual Bool casa::MSSelectableTable::isMS | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual MSSelectableMainColumn* casa::MSSelectableTable::mainColumns | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual const MSObservation& casa::MSSelectableTable::observation | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
virtual void casa::MSSelectableTable::setTable | ( | const Table & | table | ) | [inline, virtual] |
Definition at line 105 of file MSSelectableTable.h.
virtual const MSSpectralWindow& casa::MSSelectableTable::spectralWindow | ( | ) | [pure virtual] |
Implemented in casa::MSInterface, and casa::CTInterface.
const Table* casa::MSSelectableTable::table | ( | ) | [inline] |
Definition at line 106 of file MSSelectableTable.h.
References table_p.
Referenced by casa::MSInterface::asMS(), col(), MSSelectableTable(), and setTable().
const Table* casa::MSSelectableTable::table_p [protected] |
Definition at line 122 of file MSSelectableTable.h.
Referenced by MSSelectableTable(), setTable(), and table().