00001 //# LELConvert.h: Class to convert a LEL node from one numerical type to another 00002 //# Copyright (C) 1997,1998,1999,2000 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id$ 00027 00028 #ifndef LATTICES_LELCONVERT_H 00029 #define LATTICES_LELCONVERT_H 00030 00031 00032 //# Includes 00033 #include <casacore/casa/aips.h> 00034 #include <casacore/lattices/LEL/LELInterface.h> 00035 00036 00037 namespace casacore { //# NAMESPACE CASACORE - BEGIN 00038 00039 // <summary> 00040 // Class to convert a LEL node from one numerical type to another 00041 // </summary> 00042 00043 // <use visibility=local> 00044 00045 // <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos=""> 00046 // </reviewed> 00047 00048 // <prerequisite> 00049 // <li> <linkto class="Lattice"> Lattice</linkto> 00050 // <li> <linkto class="LatticeExpr"> LatticeExpr</linkto> 00051 // <li> <linkto class="LatticeExprNode"> LatticeExprNode</linkto> 00052 // <li> <linkto class="LELInterface"> LELInterface</linkto> 00053 // </prerequisite> 00054 00055 // <etymology> 00056 // This derived LEL letter class handles numerical type conversions 00057 // </etymology> 00058 00059 // <synopsis> 00060 // This LEL letter class is derived from LELInterface. It 00061 // is used to construct LEL objects that know how to convert 00062 // between numerical types, such as Double to Float. They 00063 // operate on numerical Lattices and return a numerical Lattice. 00064 // The LELConvert object is embedded in the tree, and the conversion 00065 // actually happens at tree evaluation time. 00066 // <p> 00067 // A description of the implementation details of the LEL classes can 00068 // be found in 00069 // <a href="../notes/216.html">Note 216</a> 00070 // </synopsis> 00071 00072 // <example> 00073 // Examples are not very useful as the user would never use 00074 // these classes directly. Look in LatticeExprNode.cc to see 00075 // how it invokes these classes. An example of how the user 00076 // would indirectly use this class (through the envelope) is: 00077 // <srcblock> 00078 // IPosition shape(2,5,10); 00079 // ArrayLattice<Float> x(shape); x.set(1.0); 00080 // ArrayLattice<Double> y(shape); 00081 // y.copyData(x); // y = x; 00082 // </srcblock> 00083 // The LELConvert class is embedded in the tree at construction time 00084 // so as to handle the conversion from Float to Double at evaluation time 00085 // </example> 00086 00087 // <motivation> 00088 // We needed to be able to handle mixed types in the LEL classes 00089 // </motivation> 00090 00091 //# <todo asof="1998/01/21"> 00092 //# </todo> 00093 00094 00095 template <class T, class F> class LELConvert : public LELInterface<T> 00096 { 00097 public: 00098 00099 // Constructor. <src><F></src> is the type we are coinverting from. 00100 // <src><T></src> is the type we are converting to. 00101 LELConvert (const CountedPtr<LELInterface<F> >& expr); 00102 00103 // Destructor does nothing 00104 ~LELConvert(); 00105 00106 // Recursively evaluate the expression. 00107 virtual void eval (LELArray<T>& result, 00108 const Slicer& section) const; 00109 00110 // Recursively evaluate the scalar 00111 virtual LELScalar<T> getScalar() const; 00112 00113 // Do further preparations (e.g. optimization) on the expression. 00114 virtual Bool prepareScalarExpr(); 00115 00116 // Get class name 00117 virtual String className() const; 00118 00119 // Handle locking/syncing of a lattice in a lattice expression. 00120 // <group> 00121 virtual Bool lock (FileLocker::LockType, uInt nattempts); 00122 virtual void unlock(); 00123 virtual Bool hasLock (FileLocker::LockType) const; 00124 virtual void resync(); 00125 // </group> 00126 00127 private: 00128 CountedPtr<LELInterface<F> > pExpr_p; 00129 }; 00130 00131 00132 00133 } //# NAMESPACE CASACORE - END 00134 00135 #ifndef CASACORE_NO_AUTO_TEMPLATES 00136 #include <casacore/lattices/LEL/LELConvert.tcc> 00137 #endif //# CASACORE_NO_AUTO_TEMPLATES 00138 #endif