casacore
Loading...
Searching...
No Matches
LineCollapser.h
Go to the documentation of this file.
1//# LineCollapser.h: Abstract base class to collapse lines for LatticeApply
2//# Copyright (C) 1996,1997,1998
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_LINECOLLAPSER_H
27#define LATTICES_LINECOLLAPSER_H
28
29
30//# Includes
31#include <casacore/casa/aips.h>
32#include <casacore/casa/Arrays/ArrayFwd.h>
33#include <casacore/scimath/Mathematics/NumericTraits.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37//# Forward Declarations
38class IPosition;
39
40// <summary>
41// Abstract base class for LatticeApply function signatures
42// </summary>
43
44// <use visibility=export>
45
46// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
47// </reviewed>
48
49// <prerequisite>
50// <li> <linkto class=LatticeApply>LatticeApply</linkto>
51// </prerequisite>
52
53// <etymology>
54// </etymology>
55
56// <synopsis>
57// This is an abstract base class for the collapsing of lines to
58// be used in function <src>lineApply</src> or <src>lineMultiApply</src>
59// in class <linkto class=LatticeApply>LatticeApply</linkto>.
60// It is meant for cases where the entire line is needed (e.g. moment
61// calculation). If that is not needed (e.g. to calculate maximum),
62// it is better to use function <src>LatticeApply::tiledApply</src>
63// with class <linkto class=TiledCollapser>TiledCollapser</linkto>.
64// <p>
65// The user has to derive a concrete class from this base class
66// and implement the (pure) virtual functions.
67// <br> The main function is <src>process</src>, which needs to do the
68// calculation.
69// <br> Other functions make it possible to perform an initial check.
70// <p>
71// The class is Doubly templated. Ths first template type
72// is for the data type you are processing. The second type is
73// for what type you want the results of the processing assigned to.
74// For example, if you are computing sums of squares for statistical
75// purposes, you might use higher precision (FLoat->Double) for this.
76// No check is made that the template types are self-consistent.
77// </synopsis>
78
79// <example>
80// <srcblock>
81// </srcblock>
82// </example>
83
84// <motivation>
85// </motivation>
86
87// <todo asof="1997/08/01">
88// <li>
89// </todo>
90
91template <class T, class U=T> class LineCollapser
92{
93public:
94// Destructor
95 virtual ~LineCollapser();
96
97// The init function for a derived class.
98// It can be used to check if <src>nOutPixelsPerCollapse</src>
99// corresponds with the number of pixels produced per collapsed line.
100 virtual void init (uInt nOutPixelsPerCollapse) = 0;
101
102// Can the process function in the derived class handle a null mask?
103// If not, LatticeApply ensures that it'll always pass a filled mask vector,
104// even if the lattice does not have a mask (in that case that mask
105// contains all True values).
106// <br>The default implementation returns False.
107// <br>The function is there to make optimization possible when no masks
108// are involved. On the other side, it allows the casual user to ignore
109// optimization.
110 virtual Bool canHandleNullMask() const;
111
112// Collapse the given line and return one value from that operation.
113// The position in the Lattice at the start of the line is input
114// as well.
115// <br>When function <src>canHandleNullMask</src> returned True,
116// it is possible that <src>mask</src> is an empty vector indicating
117// that the input has no mask, thus all values are valid.
118// If not empty, the mask has the same length as the line.
119 virtual void process (U& result, Bool& resultMask,
120 const Vector<T>& line,
121 const Vector<Bool>& mask,
122 const IPosition& pos) = 0;
123
124// Collapse the given line and return a line of values from that operation.
125// The position in the Lattice at the start of the line is input
126// as well.
127// <br>When function <src>canHandleNullMask</src> returned True,
128// it is possible that <src>mask</src> is an empty vector indicating
129// that the input has no mask, thus all values are valid.
130// If not empty, the mask has the same length as the line.
131 virtual void multiProcess (Vector<U>& result, Vector<Bool>& resultMask,
132 const Vector<T>& line,
133 const Vector<Bool>& mask,
134 const IPosition& pos) = 0;
135};
136
137
138
139} //# NAMESPACE CASACORE - END
140
141#ifndef CASACORE_NO_AUTO_TEMPLATES
142#include <casacore/lattices/LatticeMath/LineCollapser.tcc>
143#endif //# CASACORE_NO_AUTO_TEMPLATES
144#endif
virtual Bool canHandleNullMask() const
Can the process function in the derived class handle a null mask? If not, LatticeApply ensures that i...
virtual ~LineCollapser()
Destructor.
virtual void process(U &result, Bool &resultMask, const Vector< T > &line, const Vector< Bool > &mask, const IPosition &pos)=0
Collapse the given line and return one value from that operation.
virtual void init(uInt nOutPixelsPerCollapse)=0
The init function for a derived class.
virtual void multiProcess(Vector< U > &result, Vector< Bool > &resultMask, const Vector< T > &line, const Vector< Bool > &mask, const IPosition &pos)=0
Collapse the given line and return a line of values from that operation.
this file contains all the compiler specific defines
Definition mainpage.dox:28
unsigned int uInt
Definition aipstype.h:49
LatticeExprNode mask(const LatticeExprNode &expr)
This function returns the mask of the given expression.
bool Bool
Define the standard types used by Casacore.
Definition aipstype.h:40