casacore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Private Member Functions | Private Attributes | List of all members
casacore::RadialVelocityEngine Class Reference

Engine for TaQL UDF RadialVelocity conversions. More...

#include <RadialVelocityEngine.h>

Inheritance diagram for casacore::RadialVelocityEngine:
casacore::MeasEngine< MRadialVelocity > casacore::BaseEngine

Public Member Functions

 RadialVelocityEngine ()
 
Array< DoublegetArrayDouble (const TableExprId &id)
 Get the values. More...
 
Array< MRadialVelocitygetRadialVelocities (const TableExprId &id)
 Get the radial velocities. More...
 
void handleRadialVelocity (std::vector< TENShPtr > &args, uInt &argnr)
 Handle the argument(s) giving the input radial velocities and reference type. More...
 
void setConverter (MRadialVelocity::Types toType)
 Set the MeasConvert object. More...
 
void setDopplerEngine (DopplerEngine &engine)
 Set the possible doppler engine. More...
 
void setDirectionEngine (DirectionEngine &engine)
 Set the possible direction engine. More...
 
void setEpochEngine (EpochEngine &engine)
 Set the possible epoch engine. More...
 
void setPositionEngine (PositionEngine &engine)
 Set the possible position engine. More...
 
- Public Member Functions inherited from casacore::MeasEngine< MRadialVelocity >
 MeasEngine ()
 
virtual ~MeasEngine ()
 
MRadialVelocity::Types refType () const
 Get the reference type. More...
 
Bool handleMeasType (const TENShPtr &operand, Bool doThrow)
 Handle a doppler reference type. More...
 
Record makeAttributes (typename MRadialVelocity::Types refType, Int valueType=1) const
 Make the expression result attributes. More...
 
- Public Member Functions inherited from casacore::BaseEngine
 BaseEngine ()
 
virtual ~BaseEngine ()
 
void adaptForConstant (const IPosition &shapeConstant, uInt nvalues=0)
 Adapt the output shape and dimensionality for possible constant values. More...
 
void extendBase (const BaseEngine &, Bool removeFirstAxis=False)
 Extend the shape (if not empty) with the engine's shape. More...
 
const IPositionshape () const
 Get the output shape. More...
 
Int ndim () const
 Get the output dimensionality. More...
 
const Unitunit () const
 Get the unit of the function's result. More...
 
const UnitinUnit () const
 Get the unit of the expression. More...
 
Bool isConstant () const
 Tell if the expression is constant. More...
 

Private Member Functions

virtual void handleValues (TableExprNode &operand, const TableExprId &id, Array< MRadialVelocity > &radialVelocities)
 Let a derive class handle the values. More...
 

Private Attributes

MeasFrame itsFrame
 
MRadialVelocity::Convert itsConverter
 
DopplerEngineitsDopplerEngine
 
DirectionEngineitsDirectionEngine
 
EpochEngineitsEpochEngine
 
PositionEngineitsPositionEngine
 

Additional Inherited Members

- Protected Member Functions inherited from casacore::MeasEngine< MRadialVelocity >
void handleMeasArray (const TENShPtr &operand)
 Handle the operand representing an array of Meas values. More...
 
void handleConstant (const TENShPtr &operand)
 Handle a constant Meas value. More...
 
- Protected Member Functions inherited from casacore::BaseEngine
virtual void deriveAttr (const Unit &unit, Int nval)
 Let a derived class derive its attributes. More...
 
virtual void setValueType (Int valueType)
 Let a derived class set its value type. More...
 
virtual String stripMeasType (const String &type)
 Let a derived class strip part of the reference type. More...
 
- Protected Attributes inherited from casacore::MeasEngine< MRadialVelocity >
Array< MRadialVelocityitsConstants
 
MRadialVelocity::Types itsRefType
 
ScalarMeasColumn< MRadialVelocityitsMeasScaCol
 
ArrayMeasColumn< MRadialVelocityitsMeasArrCol
 
- Protected Attributes inherited from casacore::BaseEngine
Bool itsIsConst
 
IPosition itsShape
 
Int itsNDim
 
Unit itsInUnit
 
Unit itsOutUnit
 
TableExprNode itsExprNode
 

Detailed Description

Engine for TaQL UDF RadialVelocity conversions.

Intended use:

Public interface

Review Status

Test programs:
tMeas

Prerequisite

Synopsis

RadialVelocityEngine defines Engines (user defined functions) that can be used in TaQL to convert Measures for radial velocities. In this way such derived values appear to be ordinary TaQL functions.

RadialVelocity conversions require a MeasFrame containing sky direction, epoch and position on earth. In TaQL these functions can be called like:

meas.rv ('TOPO', 1 'm/s', 'LSRK', 'CasA', date(),
[1e6m,1e6m,1e6m], 'WGS84')

which converts the radial velocity from LSRK to TOPO.

All such functions return data with type double and unit Hz.

Radial velocities can be given like: [v1,v2,...], fromRef where fromRef is the reference type.

A radial velocity can also be a table column which usually knows its type. It can also be an expression (e.g. RADIALVELOCITY[0,]) which also knows the type.

Motivation

It makes it possible to handle measures in TaQL.

Definition at line 98 of file RadialVelocityEngine.h.

Constructor & Destructor Documentation

casacore::RadialVelocityEngine::RadialVelocityEngine ( )

Member Function Documentation

Array<Double> casacore::RadialVelocityEngine::getArrayDouble ( const TableExprId id)

Get the values.

Array<MRadialVelocity> casacore::RadialVelocityEngine::getRadialVelocities ( const TableExprId id)

Get the radial velocities.

void casacore::RadialVelocityEngine::handleRadialVelocity ( std::vector< TENShPtr > &  args,
uInt argnr 
)

Handle the argument(s) giving the input radial velocities and reference type.

The radial velocity can be a column in a table. If 'proper' is True, it is tested if a proper radial velocity is given (with proper unit and/or type). If not. False is returned. If 'proper' is False, the value is always considered as radial velocity.

virtual void casacore::RadialVelocityEngine::handleValues ( TableExprNode operand,
const TableExprId id,
Array< MRadialVelocity > &  positions 
)
privatevirtual

Let a derive class handle the values.

Implements casacore::MeasEngine< MRadialVelocity >.

void casacore::RadialVelocityEngine::setConverter ( MRadialVelocity::Types  toType)

Set the MeasConvert object.

void casacore::RadialVelocityEngine::setDirectionEngine ( DirectionEngine engine)

Set the possible direction engine.

It can be done only once.

void casacore::RadialVelocityEngine::setDopplerEngine ( DopplerEngine engine)

Set the possible doppler engine.

It can be done only once.

void casacore::RadialVelocityEngine::setEpochEngine ( EpochEngine engine)

Set the possible epoch engine.

It can be done only once.

void casacore::RadialVelocityEngine::setPositionEngine ( PositionEngine engine)

Set the possible position engine.

It can be done only once.

Member Data Documentation

MRadialVelocity::Convert casacore::RadialVelocityEngine::itsConverter
private

Definition at line 143 of file RadialVelocityEngine.h.

DirectionEngine* casacore::RadialVelocityEngine::itsDirectionEngine
private

Definition at line 145 of file RadialVelocityEngine.h.

DopplerEngine* casacore::RadialVelocityEngine::itsDopplerEngine
private

Definition at line 144 of file RadialVelocityEngine.h.

EpochEngine* casacore::RadialVelocityEngine::itsEpochEngine
private

Definition at line 146 of file RadialVelocityEngine.h.

MeasFrame casacore::RadialVelocityEngine::itsFrame
private

Definition at line 142 of file RadialVelocityEngine.h.

PositionEngine* casacore::RadialVelocityEngine::itsPositionEngine
private

Definition at line 147 of file RadialVelocityEngine.h.


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