casacore
|
Modules | |
DerivedMC_module_internal_classes | |
Internal DerivedMC_module classes and functions. | |
Classes | |
class | casacore::DerivedMSCal |
More... | |
class | casacore::MSCalEngine |
More... | |
class | casacore::UDFMSCal |
More... | |
class | casacore::UDFMSCalErrorHandler |
Error handler class for MSSel selection. More... | |
Derived MS and CalTable columns
See below for an overview of the classes in this module.
Class to handle derived columns in an MS or CalTable.
A MeasurementSet or CalTable can be extended with virtual columns to be able to use hourangle, azimuth/elevation, parallactic angle, and UVW as if they were stored in the table using the DerivedMSCal virtual column engine. Such columns have a fixed name, otherwise the engine cannot handle them. The class description of the engine shows which columns can be handled and gives an example how to add them.
Class UDFMSCal contains TaQL user defined functions for these virtual columns. In this way the columns do not need to be added to the table, but can be used directly in a TaQL command. For example:
to select the rows where the hourangle of ANTENNA1 fulfills the condition. If HA1 was added as a virtual column (which is more intrusive), the command could look like:
UVW coordinates are already stored in an MS, but the virtual UVW_J2000 column makes it possible to calculate them on the fly.
An MS or CalTable can be created with one or more of these columns or they can be added later using 'DerivedMSCal' as their data manager. A column can, of course, also be removed. If all these columns are removed, the Table System will also remove the data manager from the table.
The derivedmscal library can be used in two ways:
Note: For the second reason above it is important that the library and the other casacore libraries are built shared;
It is very handy to be able to use a column like PA in software that can deal with various table columns (e.g. TaQL, TablePlot, pyrap).