casacore
Loading...
Searching...
No Matches
Smooth.h
Go to the documentation of this file.
1//# Smooth.h: smooth vectors and arrays
2//# Copyright (C) 2010 by ESO (in the framework of the ALMA collaboration)
3//# Copyright (C) 1996,1997,1998,1999,2000,2001
4//# Associated Universities, Inc. Washington DC, USA.
5//#
6//# This library is free software; you can redistribute it and/or modify it
7//# under the terms of the GNU Library General Public License as published by
8//# the Free Software Foundation; either version 2 of the License, or (at your
9//# option) any later version.
10//#
11//# This library is distributed in the hope that it will be useful, but WITHOUT
12//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
14//# License for more details.
15//#
16//# You should have received a copy of the GNU Library General Public License
17//# along with this library; if not, write to the Free Software Foundation,
18//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
19//#
20//# Correspondence concerning AIPS++ should be addressed as follows:
21//# Internet email: casa-feedback@nrao.edu.
22//# Postal address: AIPS++ Project Office
23//# National Radio Astronomy Observatory
24//# 520 Edgemont Road
25//# Charlottesville, VA 22903-2475 USA
26
27#ifndef SCIMATH_SMOOTH_H
28#define SCIMATH_SMOOTH_H
29
30
31//# Includes
32#include <casacore/casa/aips.h>
33#include <casacore/casa/Arrays/Vector.h>
34
35namespace casacore { //# NAMESPACE CASACORE - BEGIN
36
37
38// <summary>
39// Smooth a Vector or the rows of a 2D Array taking into account
40// flags which are supplied in a Vector/Array of the same shape.
41// Modify the flags as necessary to mark channels for which the
42// smoothing could not be done because needed channels were flagged.
43// </summary>
44
45// <use visibility=export>
46
47// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
48// </reviewed>
49
50// <prerequisite>
51// <li> <linkto class="Vector">Vector</linkto>
52// <li> <linkto class="Array">Array</linkto>
53// </prerequisite>
54
55// <etymology>
56// self-explanatory
57// </etymology>
58
59// <synopsis>
60// Perform smoothing on Vectors or Arrays
61// </synopsis>
62
63// <example>
64// <srcBlock>
65// Smooth<Complex>::hanning(outv, // the output
66// outFlags, // the output mask
67// yin, // the input
68// yinFlags, // the input mask
69// False, // for flagging: good is not true
70// True); // use the default scheme for producing output flags
71// </srcBlock>
72// </example>
73
74// <motivation>
75// This is used, e.g., for visibilities in spectral channel vectors.
76// </motivation>
77
78// <todo asof="2010/07/27">
79// <li>
80// </todo>
81
82
83 template <class T>
84 class Smooth {
85
86 Smooth(){};
87
88 public:
89
90 // Hanning smoothing
91 static void hanning(Vector<T>& out, Vector<Bool>& outmask,
93 Bool TrueIsGood, Bool relaxed=True);
94
95 // as above but calling hanningSmooth for each row of the 2D array
96 static void hanning(Array<T>& out, Array<Bool>& outmask,
98 Bool TrueIsGood, Bool relaxed=True);
99 };
100
101
102} //# NAMESPACE CASACORE - END
103
104#ifndef CASACORE_NO_AUTO_TEMPLATES
105#include <casacore/scimath/Mathematics/Smooth.tcc>
106#endif //# CASACORE_NO_AUTO_TEMPLATES
107
108#endif
109
static void hanning(Vector< T > &out, Vector< Bool > &outmask, Vector< T > &in, Vector< Bool > &mask, Bool TrueIsGood, Bool relaxed=True)
Hanning smoothing.
static void hanning(Array< T > &out, Array< Bool > &outmask, Array< T > &in, Array< Bool > &mask, Bool TrueIsGood, Bool relaxed=True)
as above but calling hanningSmooth for each row of the 2D array
this file contains all the compiler specific defines
Definition mainpage.dox:28
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
const Bool True
Definition aipstype.h:41