casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
casa::ROMSPointingColumns Class Reference

A class to provide easy read-only access to MSPointing columns. More...

#include <MSPointingColumns.h>

Inheritance diagram for casa::ROMSPointingColumns:
casa::MSPointingColumns

List of all members.

Public Member Functions

 ROMSPointingColumns (const MSPointing &msPointing)
 Create a columns object that accesses the data in the specified Table.
 ~ROMSPointingColumns ()
 The destructor does nothing special.
const ROScalarColumn< Int > & antennaId () const
 Access to required columns.
const ROScalarColumn< Double > & time () const
const ROScalarQuantColumn
< Double > & 
timeQuant () const
const ROScalarMeasColumn
< MEpoch > & 
timeMeas () const
const ROScalarColumn< Double > & interval () const
const ROScalarQuantColumn
< Double > & 
intervalQuant () const
const ROScalarColumn< String > & name () const
const ROScalarColumn< Int > & numPoly () const
const ROScalarColumn< Double > & timeOrigin () const
const ROScalarQuantColumn
< Double > & 
timeOriginQuant () const
const ROScalarMeasColumn
< MEpoch > & 
timeOriginMeas () const
const ROArrayColumn< Double > & direction () const
const ROArrayMeasColumn
< MDirection > & 
directionMeasCol () const
const ROArrayColumn< Double > & target () const
const ROArrayMeasColumn
< MDirection > & 
targetMeasCol () const
const ROScalarColumn< Bool > & tracking () const
const ROArrayColumn< Double > & pointingOffset () const
 Access to optional columns.
const ROArrayMeasColumn
< MDirection > & 
pointingOffsetMeasCol () const
const ROArrayColumn< Double > & sourceOffset () const
const ROArrayMeasColumn
< MDirection > & 
sourceOffsetMeasCol () const
const ROArrayColumn< Double > & encoder () const
const ROScalarMeasColumn
< MDirection > & 
encoderMeas () const
const ROScalarColumn< Int > & pointingModelId () const
const ROScalarColumn< Bool > & onSource () const
const ROScalarColumn< Bool > & overTheTop () const
MDirection directionMeas (Int row, Double time=0) const
 Access to interpolated directions, the default time of zero will return the 0th order element of the polynomial.
MDirection targetMeas (Int row, Double time=0) const
MDirection pointingOffsetMeas (Int row, Double time=0) const
MDirection sourceOffsetMeas (Int row, Double time=0) const
Int pointingIndex (Int antenna, Double time, Int guessRow=0) const
 return the first matching row index for this time and antenna, returns -1 if no match was found For long tables you may give a guess row...the last return is usually a good one.
uInt nrow () const
 Convenience function that returns the number of rows in any of the columns.

Protected Member Functions

 ROMSPointingColumns ()
void attach (const MSPointing &msPointing)

Private Member Functions

 ROMSPointingColumns (const ROMSPointingColumns &)
ROMSPointingColumnsoperator= (const ROMSPointingColumns &)
void attachOptionalCols (const MSPointing &msPointing)

Private Attributes

ROScalarColumn< IntantennaId_p
ROArrayColumn< Doubledirection_p
ROScalarColumn< Doubleinterval_p
ROScalarColumn< Stringname_p
ROScalarColumn< IntnumPoly_p
ROArrayColumn< Doubletarget_p
ROScalarColumn< Doubletime_p
ROScalarColumn< DoubletimeOrigin_p
ROScalarColumn< Booltracking_p
ROArrayColumn< Doubleencoder_p
ROScalarColumn< BoolonSource_p
ROScalarColumn< IntpointingModelId_p
ROArrayColumn< DoublepointingOffset_p
ROArrayColumn< DoublesourceOffset_p
ROScalarColumn< BooloverTheTop_p
ROArrayMeasColumn< MDirectiondirectionMeas_p
ROArrayMeasColumn< MDirectiontargetMeas_p
ROScalarMeasColumn< MEpochtimeMeas_p
ROScalarMeasColumn< MEpochtimeOriginMeas_p
ROScalarMeasColumn< MDirectionencoderMeas_p
ROArrayMeasColumn< MDirectionpointingOffsetMeas_p
ROArrayMeasColumn< MDirectionsourceOffsetMeas_p
ROScalarQuantColumn< DoubleintervalQuant_p
ROScalarQuantColumn< DoubletimeQuant_p
ROScalarQuantColumn< DoubletimeOriginQuant_p

Detailed Description

A class to provide easy read-only access to MSPointing columns.

Intended use:

Public interface

Review Status

Reviewed By:
Bob Garwood
Date Reviewed:
1997/02/01

Prerequisite

Etymology

ROMSPointingColumns stands for Read-Only MeasurementSet Pointing Table columns.

Synopsis

This class provides read-only access to the columns in the MSPointing 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 ROMSColumns for an example.

Motivation

See MSColumns for the motivation.

Definition at line 79 of file MSPointingColumns.h.


Constructor & Destructor Documentation

Create a columns object that accesses the data in the specified Table.

The destructor does nothing special.


Member Function Documentation

Access to required columns.

Reimplemented in casa::MSPointingColumns.

Definition at line 90 of file MSPointingColumns.h.

References antennaId_p.

void casa::ROMSPointingColumns::attach ( const MSPointing msPointing) [protected]
void casa::ROMSPointingColumns::attachOptionalCols ( const MSPointing msPointing) [private]

Reimplemented in casa::MSPointingColumns.

Definition at line 104 of file MSPointingColumns.h.

References direction_p.

Access to interpolated directions, the default time of zero will return the 0th order element of the polynomial.

Reimplemented in casa::MSPointingColumns.

Definition at line 105 of file MSPointingColumns.h.

References directionMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 122 of file MSPointingColumns.h.

References encoder_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 123 of file MSPointingColumns.h.

References encoderMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 94 of file MSPointingColumns.h.

References interval_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 95 of file MSPointingColumns.h.

References intervalQuant_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 97 of file MSPointingColumns.h.

References name_p.

Convenience function that returns the number of rows in any of the columns.

Definition at line 147 of file MSPointingColumns.h.

References antennaId_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 98 of file MSPointingColumns.h.

References numPoly_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 127 of file MSPointingColumns.h.

References onSource_p.

ROMSPointingColumns& casa::ROMSPointingColumns::operator= ( const ROMSPointingColumns ) [private]

Reimplemented in casa::MSPointingColumns.

Definition at line 128 of file MSPointingColumns.h.

References overTheTop_p.

Int casa::ROMSPointingColumns::pointingIndex ( Int  antenna,
Double  time,
Int  guessRow = 0 
) const

return the first matching row index for this time and antenna, returns -1 if no match was found For long tables you may give a guess row...the last return is usually a good one.

Reimplemented in casa::MSPointingColumns.

Definition at line 125 of file MSPointingColumns.h.

References pointingModelId_p.

Access to optional columns.

Reimplemented in casa::MSPointingColumns.

Definition at line 115 of file MSPointingColumns.h.

References pointingOffset_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 117 of file MSPointingColumns.h.

References pointingOffsetMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 119 of file MSPointingColumns.h.

References sourceOffset_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 120 of file MSPointingColumns.h.

References sourceOffsetMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 107 of file MSPointingColumns.h.

References target_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 108 of file MSPointingColumns.h.

References targetMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 91 of file MSPointingColumns.h.

References time_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 93 of file MSPointingColumns.h.

References timeMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 99 of file MSPointingColumns.h.

References timeOrigin_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 102 of file MSPointingColumns.h.

References timeOriginMeas_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 100 of file MSPointingColumns.h.

References timeOriginQuant_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 92 of file MSPointingColumns.h.

References timeQuant_p.

Reimplemented in casa::MSPointingColumns.

Definition at line 110 of file MSPointingColumns.h.

References tracking_p.


Member Data Documentation

Reimplemented in casa::MSPointingColumns.

Definition at line 167 of file MSPointingColumns.h.

Referenced by antennaId(), and nrow().

Reimplemented in casa::MSPointingColumns.

Definition at line 168 of file MSPointingColumns.h.

Referenced by direction().

Reimplemented in casa::MSPointingColumns.

Definition at line 185 of file MSPointingColumns.h.

Referenced by directionMeasCol().

Reimplemented in casa::MSPointingColumns.

Definition at line 177 of file MSPointingColumns.h.

Referenced by encoder().

Reimplemented in casa::MSPointingColumns.

Definition at line 190 of file MSPointingColumns.h.

Referenced by encoderMeas().

Reimplemented in casa::MSPointingColumns.

Definition at line 169 of file MSPointingColumns.h.

Referenced by interval().

Reimplemented in casa::MSPointingColumns.

Definition at line 195 of file MSPointingColumns.h.

Referenced by intervalQuant().

Reimplemented in casa::MSPointingColumns.

Definition at line 170 of file MSPointingColumns.h.

Referenced by name().

Reimplemented in casa::MSPointingColumns.

Definition at line 171 of file MSPointingColumns.h.

Referenced by numPoly().

Reimplemented in casa::MSPointingColumns.

Definition at line 178 of file MSPointingColumns.h.

Referenced by onSource().

Reimplemented in casa::MSPointingColumns.

Definition at line 182 of file MSPointingColumns.h.

Referenced by overTheTop().

Reimplemented in casa::MSPointingColumns.

Definition at line 179 of file MSPointingColumns.h.

Referenced by pointingModelId().

Reimplemented in casa::MSPointingColumns.

Definition at line 180 of file MSPointingColumns.h.

Referenced by pointingOffset().

Reimplemented in casa::MSPointingColumns.

Definition at line 191 of file MSPointingColumns.h.

Referenced by pointingOffsetMeasCol().

Reimplemented in casa::MSPointingColumns.

Definition at line 181 of file MSPointingColumns.h.

Referenced by sourceOffset().

Reimplemented in casa::MSPointingColumns.

Definition at line 192 of file MSPointingColumns.h.

Referenced by sourceOffsetMeasCol().

Reimplemented in casa::MSPointingColumns.

Definition at line 172 of file MSPointingColumns.h.

Referenced by target().

Reimplemented in casa::MSPointingColumns.

Definition at line 186 of file MSPointingColumns.h.

Referenced by targetMeasCol().

Reimplemented in casa::MSPointingColumns.

Definition at line 173 of file MSPointingColumns.h.

Referenced by time().

Reimplemented in casa::MSPointingColumns.

Definition at line 187 of file MSPointingColumns.h.

Referenced by timeMeas().

Reimplemented in casa::MSPointingColumns.

Definition at line 174 of file MSPointingColumns.h.

Referenced by timeOrigin().

Reimplemented in casa::MSPointingColumns.

Definition at line 188 of file MSPointingColumns.h.

Referenced by timeOriginMeas().

Reimplemented in casa::MSPointingColumns.

Definition at line 197 of file MSPointingColumns.h.

Referenced by timeOriginQuant().

Reimplemented in casa::MSPointingColumns.

Definition at line 196 of file MSPointingColumns.h.

Referenced by timeQuant().

Reimplemented in casa::MSPointingColumns.

Definition at line 175 of file MSPointingColumns.h.

Referenced by tracking().


The documentation for this class was generated from the following file: