casacore
Loading...
Searching...
No Matches
MSSelUtil2.h
Go to the documentation of this file.
1//# MSSelUtil2.h: templated helper function for MSSelector
2//# Copyright (C) 1997,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 MS_MSSELUTIL2_H
27#define MS_MSSELUTIL2_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/Arrays/Matrix.h>
31#include <casacore/casa/BasicSL/Complex.h>
32
33namespace casacore { //# NAMESPACE CASACORE - BEGIN
34template <class T> class MSSelUtil2
35{
36 public:
37 // reorder data from 3d (corr,chan,row) to 4d (corr,chan,ifr,time)
38 static void reorderData(Array<T>& data,
39 const Vector<Int>& ifrSlot,
40 Int nIfr,
41 const Vector<Int>& timeSlot,
42 Int nTime,
43 const T& defvalue);
44
45 // reorder data from 4d (corr,chan,ifr,time) to 3d (corr,chan,row)
46 static void reorderData(Array<T>& data,
47 const Matrix<Int64>& rowIndex,
48 Int64 nRow);
49
50 // average data (with flags & weights applied) over it's last axis (time or
51 // row), return in data (overwritten), dataFlag gives new flags.
52 static void timeAverage(Array<Bool>& dataFlag, Array<T>& data,
53 const Array<Bool>& flag, const Array<Float>& weight);
54
55};
56} //# NAMESPACE CASACORE - END
57
58#ifndef CASACORE_NO_AUTO_TEMPLATES
59#include <casacore/ms/MSSel/MSSelUtil2.tcc>
60#endif //# CASACORE_NO_AUTO_TEMPLATES
61#endif
static void timeAverage(Array< Bool > &dataFlag, Array< T > &data, const Array< Bool > &flag, const Array< Float > &weight)
average data (with flags & weights applied) over it's last axis (time or row), return in data (overwr...
static void reorderData(Array< T > &data, const Matrix< Int64 > &rowIndex, Int64 nRow)
reorder data from 4d (corr,chan,ifr,time) to 3d (corr,chan,row)
static void reorderData(Array< T > &data, const Vector< Int > &ifrSlot, Int nIfr, const Vector< Int > &timeSlot, Int nTime, const T &defvalue)
reorder data from 3d (corr,chan,row) to 4d (corr,chan,ifr,time)
this file contains all the compiler specific defines
Definition mainpage.dox:28
long long Int64
Define the extra non-standard types used by Casacore (like proposed uSize, Size)
Definition aipsxtype.h:36
int Int
Definition aipstype.h:48