casacore
Loading...
Searching...
No Matches
LELConvert.h
Go to the documentation of this file.
1//# LELConvert.h: Class to convert a LEL node from one numerical type to another
2//# Copyright (C) 1997,1998,1999,2000
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 LATTICES_LELCONVERT_H
27#define LATTICES_LELCONVERT_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/lattices/LEL/LELInterface.h>
33
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37// <summary>
38// Class to convert a LEL node from one numerical type to another
39// </summary>
40
41// <use visibility=local>
42
43// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
44// </reviewed>
45
46// <prerequisite>
47// <li> <linkto class="Lattice"> Lattice</linkto>
48// <li> <linkto class="LatticeExpr"> LatticeExpr</linkto>
49// <li> <linkto class="LatticeExprNode"> LatticeExprNode</linkto>
50// <li> <linkto class="LELInterface"> LELInterface</linkto>
51// </prerequisite>
52
53// <etymology>
54// This derived LEL letter class handles numerical type conversions
55// </etymology>
56
57// <synopsis>
58// This LEL letter class is derived from LELInterface. It
59// is used to construct LEL objects that know how to convert
60// between numerical types, such as Double to Float. They
61// operate on numerical Lattices and return a numerical Lattice.
62// The LELConvert object is embedded in the tree, and the conversion
63// actually happens at tree evaluation time.
64// <p>
65// A description of the implementation details of the LEL classes can
66// be found in
67// <a href="../notes/216.html">Note 216</a>
68// </synopsis>
69
70// <example>
71// Examples are not very useful as the user would never use
72// these classes directly. Look in LatticeExprNode.cc to see
73// how it invokes these classes. An example of how the user
74// would indirectly use this class (through the envelope) is:
75// <srcblock>
76// IPosition shape(2,5,10);
77// ArrayLattice<Float> x(shape); x.set(1.0);
78// ArrayLattice<Double> y(shape);
79// y.copyData(x); // y = x;
80// </srcblock>
81// The LELConvert class is embedded in the tree at construction time
82// so as to handle the conversion from Float to Double at evaluation time
83// </example>
84
85// <motivation>
86// We needed to be able to handle mixed types in the LEL classes
87// </motivation>
88
89//# <todo asof="1998/01/21">
90//# </todo>
91
92
93template <class T, class F> class LELConvert : public LELInterface<T>
94{
95public:
96
97// Constructor. <src><F></src> is the type we are coinverting from.
98// <src><T></src> is the type we are converting to.
99 LELConvert (const std::shared_ptr<LELInterface<F>>& expr);
100
101// Destructor does nothing
103
104// Recursively evaluate the expression.
105 virtual void eval (LELArray<T>& result,
106 const Slicer& section) const;
107
108// Recursively evaluate the scalar
109 virtual LELScalar<T> getScalar() const;
110
111// Do further preparations (e.g. optimization) on the expression.
113
114// Get class name
115 virtual String className() const;
116
117 // Handle locking/syncing of a lattice in a lattice expression.
118 // <group>
119 virtual Bool lock (FileLocker::LockType, uInt nattempts);
120 virtual void unlock();
122 virtual void resync();
123 // </group>
124
125private:
126 std::shared_ptr<LELInterface<F>> pExpr_p;
127};
128
129
130
131} //# NAMESPACE CASACORE - END
132
133#ifndef CASACORE_NO_AUTO_TEMPLATES
134#include <casacore/lattices/LEL/LELConvert.tcc>
135#endif //# CASACORE_NO_AUTO_TEMPLATES
136#endif
LockType
Define the possible lock types.
Definition FileLocker.h:93
virtual String className() const
Get class name.
virtual void eval(LELArray< T > &result, const Slicer &section) const
Recursively evaluate the expression.
virtual void unlock()
virtual void resync()
virtual Bool lock(FileLocker::LockType, uInt nattempts)
Handle locking/syncing of a lattice in a lattice expression.
virtual Bool prepareScalarExpr()
Do further preparations (e.g.
virtual LELScalar< T > getScalar() const
Recursively evaluate the scalar.
std::shared_ptr< LELInterface< F > > pExpr_p
Definition LELConvert.h:126
~LELConvert()
Destructor does nothing.
virtual Bool hasLock(FileLocker::LockType) const
LELConvert(const std::shared_ptr< LELInterface< F > > &expr)
Constructor.
String: the storage and methods of handling collections of characters.
Definition String.h:223
this file contains all the compiler specific defines
Definition mainpage.dox:28
unsigned int uInt
Definition aipstype.h:49
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40