casacore
Loading...
Searching...
No Matches
MSSpWindowIndex.h
Go to the documentation of this file.
1//# MSSpWindowIndex: index/lookup in a MeasurementSet SPECTRAL_WINDOW subtable
2//# Copyright (C) 2000,2001,2002
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_MSSPWINDOWINDEX_H
27#define MS_MSSPWINDOWINDEX_H
28
29//# includes
30#include <casacore/casa/aips.h>
31#include <casacore/measures/Measures/MFrequency.h>
32#include <casacore/ms/MeasurementSets/MSSpectralWindow.h>
33#include <casacore/ms/MeasurementSets/MSSpWindowColumns.h>
34#include <casacore/casa/Arrays/Vector.h>
35#include <casacore/casa/BasicSL/String.h>
36
37namespace casacore { //# NAMESPACE CASACORE - BEGIN
38
39//# forward declarations
40
41// <summary>
42// Class to handle lookup or indexing into a MS SPECTRAL_WINDOW subtable
43// </summary>
44
45// <use visibility=export>
46//
47// <reviewed reviewer="" date="yyyy/mm/dd" tests="" demos="">
48// </reviewed>
49
50// <prerequisite>
51// <li> MeasurementSet
52// <li> MSSpWindowription
53// </prerequisite>
54//
55// <etymology>
56// From "MeasurementSet", "SPECTRAL_WINDOW subtable" and "index".
57// </etymology>
58//
59// <synopsis>
60// This class provides lookup and indexing into an MS SPECTRAL_WINDOW
61// subtable. These services include returning rows numbers
62// (which for the SPECTRAL_WINDOW subtable are SPECTRAL_WINDOW_ID's)
63// associated with specific data in the subtable.
64// </synopsis>
65//
66// <example>
67// </example>
68//
69// <motivation>
70// Collect together all subtable indexing and lookup for the
71// SPECTRAL_WINDOW subtable, for encapsulation and efficiency.
72// </motivation>
73//
74// <thrown>
75// <li>
76// <li>
77// </thrown>
78//
79
81{
82public:
83 // Construct from an MS SPECTRAL_WINDOW subtable
84 MSSpWindowIndex(const MSSpectralWindow& spectralWindow);
85
86 // Null destructor
87 virtual ~MSSpWindowIndex() {}
88
89 // Look up SPECTRAL_WINDOW_ID's for a given frequency group or groups
90 Vector<Int> matchFreqGrp(const Int& freqGrp);
92
93 // Look up SPECTRAL_WINDOW_ID's for a given frequency group name
94 Vector<Int> matchFreqGrpName(const String& freqGrpName);
95
96 // Look up SPECTRAL_WINDOW_ID's for a given frequency axis sampling
98 const Vector<MVFrequency>& chanWidth,
99 const Double& freqTol);
100
101private:
102 // Disallow null constructor
104
105 // SPECTRAL_WINDOW subtable column accessor
107
108 // Vector cache of SpWindow id's
111};
112
113
114} //# NAMESPACE CASACORE - END
115
116#endif
117
Vector< Int > matchFreqGrp(const Vector< Int > &freqGrps)
MSSpWindowIndex(const MSSpectralWindow &spectralWindow)
Construct from an MS SPECTRAL_WINDOW subtable.
Vector< Int > matchFreqGrp(const Int &freqGrp)
Look up SPECTRAL_WINDOW_ID's for a given frequency group or groups.
virtual ~MSSpWindowIndex()
Null destructor.
MSSpWindowColumns msSpWindowCols_p
SPECTRAL_WINDOW subtable column accessor.
MSSpWindowIndex()
Disallow null constructor.
Vector< Int > matchFreq(const Vector< MFrequency > &chanFreq, const Vector< MVFrequency > &chanWidth, const Double &freqTol)
Look up SPECTRAL_WINDOW_ID's for a given frequency axis sampling.
Vector< Int > spWindowIds_p
Vector cache of SpWindow id's.
Vector< Int > matchFreqGrpName(const String &freqGrpName)
Look up SPECTRAL_WINDOW_ID's for a given frequency group name.
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
int Int
Definition aipstype.h:48
double Double
Definition aipstype.h:53