casacore
Loading...
Searching...
No Matches
LELLattCoordBase.h
Go to the documentation of this file.
1//# LELLattCoordBase.h: The base letter class for lattice coordinates in LEL
2//# Copyright (C) 1998,1999,2000,2001
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_LELLATTCOORDBASE_H
27#define LATTICES_LELLATTCOORDBASE_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/casa/Arrays/ArrayFwd.h>
33#include <casacore/casa/BasicSL/String.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class LELImageCoord;
39class IPosition;
40
41// <summary>
42// The base letter class for lattice coordinates in LEL.
43// </summary>
44
45// <use visibility=local>
46
47// <reviewed reviewer="Bob Garwood" date="2000/01/25" tests="tLatticeExpr">
48// </reviewed>
49
50// <prerequisite>
51// <li> <linkto class="Lattice"> Lattice</linkto>
52// <li> <linkto class="LELCoordinates"> LELCoordinates</linkto>
53// </prerequisite>
54
55// <synopsis>
56// This abstract base class is the basic letter for the envelope class
57// <linkto class=LELCoordinates>LELCoordinates</linkto>.
58// It does not do anything, but makes it possible that derived classes
59// (like <linkto class=LELLattCoord>LELLattCoord</linkto> and
60// <linkto class=LELImageCoord>LELImageCoord</linkto>)
61// implement their own behaviour.
62// </synopsis>
63
64// <motivation>
65// It must be possible to handle image coordinates in a lattice
66// expression.
67// </motivation>
68
69//# <todo asof="1998/01/31">
70//# <li>
71//# </todo>
72
73
75{
76public:
79
80 // A virtual destructor is needed so that it will use the actual
81 // destructor in the derived class.
83
84 // Does the class have true coordinates?
85 virtual Bool hasCoordinates() const = 0;
86
87 // The name of the class.
88 virtual String classname() const = 0;
89
90 // Get the coordinates of the spectral axis for the given shape.
91 // It returns the pixel axis number of the spectral coordinates.
92 // -1 indicates that there is no pixel spectral axis.
93 // An exception is thrown if there are no world spectral coordinates.
94 virtual uInt getSpectralInfo (Vector<Double>& worldCoordinates,
95 const IPosition& shape) const = 0;
96
97 // Check how the coordinates of this and that compare.
98 virtual Int compare (const LELLattCoordBase& other) const = 0;
99
100 // Check how the coordinates of this and that image compare.
101 // This function is used by <src>conform</src> to make a
102 // double virtual dispatch possible.
103 virtual Int doCompare (const LELImageCoord& other) const = 0;
104};
105
106
107
108} //# NAMESPACE CASACORE - END
109
110#endif
111
virtual Int doCompare(const LELImageCoord &other) const =0
Check how the coordinates of this and that image compare.
virtual Int compare(const LELLattCoordBase &other) const =0
Check how the coordinates of this and that compare.
virtual uInt getSpectralInfo(Vector< Double > &worldCoordinates, const IPosition &shape) const =0
Get the coordinates of the spectral axis for the given shape.
virtual Bool hasCoordinates() const =0
Does the class have true coordinates?
virtual String classname() const =0
The name of the class.
virtual ~LELLattCoordBase()
A virtual destructor is needed so that it will use the actual destructor in the derived class.
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
TableExprNode shape(const TableExprNode &array)
Function operating on any scalar or array resulting in a Double array containing the shape.
Definition ExprNode.h:1991
int Int
Definition aipstype.h:48
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40