casacore
Loading...
Searching...
No Matches
DopplerEngine.h
Go to the documentation of this file.
1//# DopplerEngine.h: Engine for TaQL UDF Doppler conversions
2//# Copyright (C) 2016
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_DOPPLERENGINE_H
27#define MEAS_DOPPLERENGINE_H
28
29//# Includes
30#include <casacore/casa/aips.h>
31#include <casacore/meas/MeasUDF/MeasEngine.h>
32#include <casacore/measures/Measures/MDoppler.h>
33#include <casacore/measures/Measures/MCDoppler.h>
34#include <casacore/measures/Measures/MeasConvert.h>
35#include <casacore/casa/Quanta/MVFrequency.h>
36#include <memory>
37
38namespace casacore {
39
40 //# Forward Declarations
41 class RadialVelocityEngine;
42 class FrequencyEngine;
43
44
45 // <summary>
46 // Engine for TaQL UDF Doppler conversions
47 // </summary>
48
49 // <use visibility=export>
50
51 // <reviewed reviewer="" date="" tests="tMeas.cc">
52 // </reviewed>
53
54 // <prerequisite>
55 //# Classes you should understand before using this one.
56 // <li> EngineBase
57 // </prerequisite>
58
59 // <synopsis>
60 // DopplerEngine defines Engines (user defined functions) that can be used
61 // in TaQL to convert Measures for dopplers.
62 // In this way such derived values appear to be ordinary TaQL functions.
63 //
64 // Doppler conversions require a MeasFrame containing sky direction,
65 // epoch and position on earth.
66 // In TaQL these functions can be called like:
67 // <srcblock>
68 // meas.rv ('TOPO', 1 'm/s', 'LSRK', 'CasA', date(),
69 // [1e6m,1e6m,1e6m], 'WGS84')
70 // </srcblock>
71 // which converts the dopplers from LSRK to TOPO.
72 // <ul>
73 // <li>
74 // <src>toref</src> is a single constant string.
75 // <li>
76 // <src>pos</src> can have various value types. A single numeric array is
77 // a series of RA,DEC in J2000. If given as a set, the last argument of the
78 // set can be the reference types of the values in the set. The values can
79 // be strings (indicating planetary objects) or value pairs giving lon,lat.
80 // The default reference type is J2000.
81 // </ul>
82 // All such functions return data with type double and unit Hz.
83 //
84 // Dopplers can be given like:
85 // [v1,v2,...], fromRef
86 // where fromRef is the reference type.
87 //
88 // A doppler can also be a table column which usually knows its type.
89 // It can also be an expression (e.g. DOPPLER[0,]) which also knows the type.
90 // </synopsis>
91
92 // <motivation>
93 // It makes it possible to handle measures in TaQL.
94 // </motivation>
95
96 class DopplerEngine: public MeasEngine<MDoppler>
97 {
98 public:
100
103
104 virtual ~DopplerEngine();
105
106 // Handle a possible rest frequency.
107 // False is returned if it appears to be no rest frequency.
109
110 // Get the values.
112
113 // Get the dopplers.
115
116 // Handle the argument(s) giving the input dopplers and reference type.
117 // The doppler can be a column in a table.
118 // If 'proper' is True, it is tested if a proper doppler is given
119 // (with proper type). If not. False is returned.
120 // The 'allow' arguments tell if the doppler can be specified by means of
121 // a radial velocity or freq/restfreq.
122 void handleDoppler (std::vector<TENShPtr>& args,
123 uInt& argnr, Bool allowRadVel, Bool allowFreq);
124
125 // Set the MeasConvert object.
127
128 private:
129 void handleRestFreq (vector<TENShPtr>& args, uInt& argnr);
130 void handleLine (const TENShPtr& operand);
131 // Handle the values.
132 virtual void handleValues (TableExprNode& operand,
133 const TableExprId& id,
134 Array<MDoppler>& dopplers);
136
137 //# Data members.
140 std::shared_ptr<RadialVelocityEngine> itsRadVelEngine;
141 std::shared_ptr<FrequencyEngine > itsFreqEngine;
144 };
145
146} //end namespace
147
148#endif
std::shared_ptr< FrequencyEngine > itsFreqEngine
Array< MVFrequency > itsConstRestFreqs
void handleRestFreq(vector< TENShPtr > &args, uInt &argnr)
std::shared_ptr< RadialVelocityEngine > itsRadVelEngine
void handleLine(const TENShPtr &operand)
void setConverter(MDoppler::Types toType)
Set the MeasConvert object.
Bool handleRestFreq(const TENShPtr &)
Handle a possible rest frequency.
void handleDoppler(std::vector< TENShPtr > &args, uInt &argnr, Bool allowRadVel, Bool allowFreq)
Handle the argument(s) giving the input dopplers and reference type.
Array< MDoppler > getDopplers(const TableExprId &id)
Get the dopplers.
virtual void handleValues(TableExprNode &operand, const TableExprId &id, Array< MDoppler > &dopplers)
Handle the values.
MDoppler::Convert itsConverter
Array< MVFrequency > getRestFreqs(const TableExprId &id)
Array< Double > getArrayDouble(const TableExprId &id)
Get the values.
Types
Types of known MDopplers Warning: The order defines the order in the translation matrix FromTo in th...
Definition MDoppler.h:146
this file contains all the compiler specific defines
Definition mainpage.dox:28
unsigned int uInt
Definition aipstype.h:49
std::shared_ptr< TableExprNodeRep > TENShPtr
Definition ExprNodeRep.h:55
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40