casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
LELLattice.h
Go to the documentation of this file.
00001 //# LELLattice.h:  LELLattice
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: LELLattice.h 20508 2009-01-20 11:09:47Z gervandiepen $
00027 
00028 #ifndef LATTICES_LELLATTICE_H
00029 #define LATTICES_LELLATTICE_H
00030 
00031 
00032 //# Includes
00033 #include <lattices/Lattices/LELInterface.h>
00034 
00035 namespace casa { //# NAMESPACE CASA - BEGIN
00036 
00037 //# Forward Declarations
00038 template <class T> class Lattice;
00039 template <class T> class MaskedLattice;
00040 
00041 
00042 // <summary> This LEL class handles access to Lattices </summary>
00043 //
00044 // <use visibility=local>
00045 //
00046 // <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
00047 // </reviewed>
00048 //
00049 // <prerequisite>
00050 //   <li> <linkto class="Lattice"> Lattice</linkto>
00051 //   <li> <linkto class="LatticeExpr"> LatticeExpr</linkto>
00052 //   <li> <linkto class="LatticeExprNode"> LatticeExprNode</linkto>
00053 //   <li> <linkto class="LELInterface"> LELInterface</linkto>
00054 // </prerequisite>
00055 //
00056 // <etymology>
00057 //  This derived LEL letter class handles access to the pixels in a Lattice
00058 // </etymology>
00059 //
00060 // <synopsis>
00061 // This LEL letter class is derived from LELInterface.  It
00062 // is used to construct LEL objects that access the pixels in
00063 // a Lattice. It works with Lattices of type 
00064 // Float,Double,Complex,DComplex and Bool.  
00065 //
00066 // A description of the implementation details of the LEL classes can
00067 // be found in
00068 // <a href="../notes/216.html">Note 216</a>
00069 // </synopsis> 
00070 //
00071 // <example>
00072 // Examples are not very useful as the user would never use 
00073 // these classes directly.  Look in LatticeExprNode.cc to see 
00074 // how it invokes these classes.  An example of how the user
00075 // would indirectly use this class (through the envelope) is:
00076 // <srcblock>
00077 // IPosition shape(2,5,10);
00078 // ArrayLattice<Float> x(shape); x.set(1.0);
00079 // ArrayLattice<Float> y(shape); 
00080 // y.copyData(x);                 // y = x
00081 // </srcblock>
00082 // </example>
00083 //
00084 // <motivation>
00085 // Accessing Lattices is fundamental to manipulating their pixel values
00086 // </motivation>
00087 //
00088 // <todo asof="1998/01/20">
00089 // </todo>
00090  
00091 
00092 
00093 
00094 template <class T> class LELLattice : public LELInterface<T>
00095 {
00096   //# Make members of parent class known.
00097 public:
00098   using LELInterface<T>::getAttribute;
00099 protected:
00100   using LELInterface<T>::setAttr;
00101 
00102 public: 
00103 // Constructor takes lattice to fetch from it
00104 // <group>
00105    LELLattice (const Lattice<T>& lattice);  
00106    LELLattice (const MaskedLattice<T>& lattice);  
00107 // </group>
00108 
00109 // Destructor does nothing
00110   ~LELLattice();
00111 
00112 // Evaluate the expression; this means get the chunk of the lattice.
00113    virtual void eval(LELArray<T>& result,
00114                      const Slicer& section) const;
00115    virtual void evalRef(LELArrayRef<T>& result,
00116                         const Slicer& section) const;
00117 
00118 // Getting a scalar value is not possible (throws exception).
00119    virtual LELScalar<T> getScalar() const;
00120 
00121 // Do further preparations (e.g. optimization) on the expression.
00122    virtual Bool prepareScalarExpr();
00123 
00124 // Get class name
00125    virtual String className() const;
00126 
00127   // Handle locking/syncing of a lattice in a lattice expression.
00128   // <group>
00129   virtual Bool lock (FileLocker::LockType, uInt nattempts);
00130   virtual void unlock();
00131   virtual Bool hasLock (FileLocker::LockType) const;
00132   virtual void resync();
00133   // </group>
00134 
00135 private:
00136    MaskedLattice<T>* pLattice_p;
00137 };
00138 
00139 
00140 
00141 } //# NAMESPACE CASA - END
00142 
00143 #ifndef CASACORE_NO_AUTO_TEMPLATES
00144 #include <lattices/Lattices/LELLattice.tcc>
00145 #endif //# CASACORE_NO_AUTO_TEMPLATES
00146 #endif