casacore
Loading...
Searching...
No Matches
MeasEngine.h
Go to the documentation of this file.
1//# MeasEngine.h: Templated base class for the TaQL UDF conversion engines
2//# Copyright (C) 2018
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef MEAS_MEASENGINE_H
27#define MEAS_MEASENGINE_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/meas/MeasUDF/BaseEngine.h>
32#include <casacore/measures/TableMeasures/ScalarMeasColumn.h>
33#include <casacore/measures/TableMeasures/ArrayMeasColumn.h>
34#include <casacore/casa/Arrays/Array.h>
35
36namespace casacore {
37
38 // <summary>
39 // Templated base class for the TaQL UDF conversion engines
40 // </summary>
41
42 // <use visibility=export>
43
44 // <reviewed reviewer="" date="" tests="tMeas.cc">
45 // </reviewed>
46
47 // <prerequisite>
48 //# Classes you should understand before using this one.
49 // <li> BaseEngine
50 // </prerequisite>
51
52 // <synopsis>
53 // DopplerEngine defines Engines (user defined functions) that can be used
54 // in TaQL to convert Measures for dopplers.
55 // In this way such derived values appear to be ordinary TaQL functions.
56 //
57 // Doppler conversions require a MeasFrame containing sky direction,
58 // epoch and position on earth.
59 // In TaQL these functions can be called like:
60 // <srcblock>
61 // meas.rv ('TOPO', 1 'm/s', 'LSRK', 'CasA', date(),
62 // [1e6m,1e6m,1e6m], 'WGS84')
63 // </srcblock>
64 // which converts the dopplers from LSRK to TOPO.
65 // <ul>
66 // <li>
67 // <src>toref</src> is a single constant string.
68 // <li>
69 // <src>pos</src> can have various value types. A single numeric array is
70 // a series of RA,DEC in J2000. If given as a set, the last argument of the
71 // set can be the reference types of the values in the set. The values can
72 // be strings (indicating planetary objects) or value pairs giving lon,lat.
73 // The default reference type is J2000.
74 // </ul>
75 // All such functions return data with type double and unit Hz.
76 //
77 // Dopplers can be given like:
78 // [v1,v2,...], fromRef
79 // where fromRef is the reference type.
80 //
81 // A doppler can also be a table column which usually knows its type.
82 // It can also be an expression (e.g. DOPPLER[0,]) which also knows the type.
83 // </synopsis>
84
85 // <motivation>
86 // It makes it possible to handle measures in TaQL.
87 // </motivation>
88
89 template <typename M>
90 class MeasEngine: public BaseEngine
91 {
92 public:
94 : itsRefType (M::N_Types)
95 {}
96
97 virtual ~MeasEngine();
98
99 // Get the reference type.
100 typename M::Types refType() const
101 { return itsRefType; }
102
103 // Handle a doppler reference type.
104 // If the reference type is invalid, an exception is only thrown
105 // if <src>doThrow=True</src>. In this way a string argument can
106 // be a source name for a direction.
107 Bool handleMeasType (const TENShPtr& operand, Bool doThrow);
108
109 // Make the expression result attributes.
110 Record makeAttributes (typename M::Types refType,
111 Int valueType = 1) const;
112
113 protected:
114 // Handle the operand representing an array of Meas values.
115 void handleMeasArray (const TENShPtr& operand);
116
117 // Handle a constant Meas value.
118 void handleConstant (const TENShPtr& operand);
119
120 // Let a derive class handle the values.
121 virtual void handleValues (TableExprNode& operand,
122 const TableExprId& id,
123 Array<M>& positions) = 0;
124
125 //# Data members.
127 typename M::Types itsRefType;
130 };
131
132} //end namespace
133
134
135#ifndef CASACORE_NO_AUTO_TEMPLATES
136#include <casacore/meas/MeasUDF/MeasEngine.tcc>
137#endif //# CASACORE_NO_AUTO_TEMPLATES
138#endif
Bool handleMeasType(const TENShPtr &operand, Bool doThrow)
Handle a doppler reference type.
M::Types refType() const
Get the reference type.
Definition MeasEngine.h:100
virtual void handleValues(TableExprNode &operand, const TableExprId &id, Array< M > &positions)=0
Let a derive class handle the values.
Array< M > itsConstants
Definition MeasEngine.h:126
ArrayMeasColumn< M > itsMeasArrCol
Definition MeasEngine.h:129
Record makeAttributes(typename M::Types refType, Int valueType=1) const
Make the expression result attributes.
void handleMeasArray(const TENShPtr &operand)
Handle the operand representing an array of Meas values.
ScalarMeasColumn< M > itsMeasScaCol
Definition MeasEngine.h:128
void handleConstant(const TENShPtr &operand)
Handle a constant Meas value.
this file contains all the compiler specific defines
Definition mainpage.dox:28
std::shared_ptr< TableExprNodeRep > TENShPtr
Definition ExprNodeRep.h:55
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40