This file is indexed.

/usr/include/casacore/ms/MeasurementSets/MSSpWindowColumns.h is in casacore-dev 2.2.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
//# MSSpWindowColumns.h: provides easy access to MSSpectralWindow columns
//# Copyright (C) 1996,1999,2000,2002
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//#        Internet email: aips2-request@nrao.edu.
//#        Postal address: AIPS++ Project Office
//#                        National Radio Astronomy Observatory
//#                        520 Edgemont Road
//#                        Charlottesville, VA 22903-2475 USA
//#
//# $Id$

#ifndef MS_MSSPWINDOWCOLUMNS_H
#define MS_MSSPWINDOWCOLUMNS_H

#include <casacore/casa/aips.h>
#include <casacore/measures/Measures/MFrequency.h>
#include <casacore/measures/Measures/MCFrequency.h>
#include <casacore/tables/Tables/ScalarColumn.h>
#include <casacore/tables/Tables/ArrayColumn.h>
#include <casacore/measures/TableMeasures/ScalarMeasColumn.h>
#include <casacore/measures/TableMeasures/ScalarQuantColumn.h>
#include <casacore/measures/TableMeasures/ArrayMeasColumn.h>
#include <casacore/measures/TableMeasures/ArrayQuantColumn.h>
#include <casacore/casa/BasicSL/String.h>
#include <casacore/measures/Measures/MeasFrame.h>
#include <casacore/ms/MeasurementSets/MSDopplerColumns.h>
#include <casacore/ms/MeasurementSets/MSSourceColumns.h>

namespace casacore { //# NAMESPACE CASACORE - BEGIN

class MSSpectralWindow;

// <summary>
// A class to provide easy read-only access to MSASpectralWindow columns
// </summary>

// <use visibility=export>

// <reviewed reviewer="Bob Garwood" date="1997/02/01" tests="" demos="">
// </reviewed>

// <prerequisite>
//   <li> MSSpectralWindow
//   <li> ArrayColumn
//   <li> ScalarColumn
// </prerequisite>
//
// <etymology>
// ROMSSpectralWindowColumns stands for Read-Only MeasurementSet SpectralWindow Table columns.
// </etymology>
//
// <synopsis>
// This class provides read-only access to the columns in the MSSpectralWindow Table.
// It does the declaration of all the Scalar and ArrayColumns with the
// correct types, so the application programmer doesn't have to
// worry about getting those right. There is an access function
// for every predefined column. Access to non-predefined columns will still
// have to be done with explicit declarations.
// See <linkto class=ROMSColumns> ROMSColumns</linkto> for an example.
// </synopsis>
//
// <motivation>
// See <linkto class=MSColumns> MSColumns</linkto> for the motivation.
// </motivation>

class ROMSSpWindowColumns
{
public:
  // Create a columns object that accesses the data in the specified Table
  ROMSSpWindowColumns(const MSSpectralWindow& msSpWindow);

  // The destructor does nothing special
  ~ROMSSpWindowColumns();

  // Access to columns
  // <group>
  const ROArrayColumn<Double>& chanFreq() const {return chanFreq_p;}
  const ROArrayQuantColumn<Double>& chanFreqQuant() const {
    return chanFreqQuant_p;}
  const ROArrayMeasColumn<MFrequency>& chanFreqMeas() const {
    return chanFreqMeas_p;}
  const ROArrayColumn<Double>& chanWidth() const {return chanWidth_p;}
  const ROArrayQuantColumn<Double>& chanWidthQuant() const {
    return chanWidthQuant_p;}
  const ROArrayColumn<Double>& effectiveBW() const {return effectiveBW_p;}
  const ROArrayQuantColumn<Double>& effectiveBWQuant() const {
    return effectiveBWQuant_p;}
  const ROScalarColumn<Int>& freqGroup() const {return freqGroup_p;}
  const ROScalarColumn<String>& freqGroupName() const {return freqGroupName_p;}
  const ROScalarColumn<Int>& ifConvChain() const {return ifConvChain_p;}
  const ROScalarColumn<Bool>& flagRow() const {return flagRow_p;}
  const ROScalarColumn<Int>& measFreqRef() const {return measFreqRef_p;}
  const ROScalarColumn<String>& name() const {return name_p;}
  const ROScalarColumn<Int>& netSideband() const {return netSideband_p;}
  const ROScalarColumn<Int>& numChan() const {return numChan_p;}
  const ROScalarColumn<Double>& refFrequency() const {return refFrequency_p;}
  const ROScalarQuantColumn<Double>& refFrequencyQuant() const {
    return refFrequencyQuant_p;}
  const ROScalarMeasColumn<MFrequency>& refFrequencyMeas() const {
    return refFrequencyMeas_p;}
  const ROArrayColumn<Double>& resolution() const {return resolution_p;}
  const ROArrayQuantColumn<Double>& resolutionQuant() const {
    return resolutionQuant_p;}
  const ROScalarColumn<Double>& totalBandwidth() const {
    return totalBandwidth_p;}
  const ROScalarQuantColumn<Double>& totalBandwidthQuant() const {
    return totalBandwidthQuant_p;}
  // </group>

  // Access to optional columns
  // <group>
  const ROArrayColumn<String>& assocNature() const {return assocNature_p;}
  const ROArrayColumn<Int>& assocSpwId() const {return assocSpwId_p;}
  const ROScalarColumn<Int>& bbcNo() const {return bbcNo_p;}
  const ROScalarColumn<Int>& bbcSideband() const {return bbcSideband_p;}
  const ROScalarColumn<Int>& dopplerId() const {return dopplerId_p;}
  const ROScalarColumn<Int>& receiverId() const {return receiverId_p;}
  // </group>

  // Convenience function that returns the number of rows in any of the columns
  uInt nrow() const {return chanFreq_p.nrow();}

  // returns the last row that contains a spectral window that has the
  // specified reference frequency, number of channels, total-bandwidth and IF
  // conversion chain. All frequencies need to match within the specified
  // tolerance. Both the totalBandwidth & the tolerance arguments must have the
  // same dimensions as the Hz and an AipsError exception is thrown, in debug
  // mode, if the dimensions are wrong. In addition to the numerical values the
  // frequency reference frame is checked and needs to match the value in the
  // MEAS_FREQ_REF column. No conversions to other reference frames are
  // done. Will only try to match on rows where FLAG_ROW is false. If tryRow is
  // set to a non-negative value then that row is checked first to see if it
  // matches. An AIpsError exception is thrown if tryRow is bigger than the
  // number of rows in the Table. Returns -1 if no match could be found.
  Int matchSpw(const MFrequency& refFreq, uInt nChan, 
	       const Quantum<Double>& bandwidth, Int ifChain,
	       const Quantum<Double>& tolerance, Int tryRow=-1) const;
  // Similar to above, but also pass in the frame info.			 
  Int matchSpw(const MFrequency& refFreq, const MFrequency& chanFreq1, const MeasFrame& measFrm,
          const MSDopplerColumns& msdopc, const MSSourceColumns& mssrcc, uInt nChan, 
	       const Quantum<Double>& bandwidth, Int ifChain,
	       const Quantum<Double>& tolerance, Int tryRow=-1) const; 
  // This is to check that the channels are matched individually
  // and also if the spw is matched in reverse; 

  //Same as the above but returns all the possible match that it could find
  // in the spectral window table. 
  Vector<Int> allMatchedSpw(const MFrequency& refFreq, uInt nChan, 
	       const Quantum<Double>& bandwidth, Int ifChain,
	       const Quantum<Double>& tolerance) const;

  //This version does a channel to channel match too and also return
  // the reversed if it matches but the channels are in inverse order
  // like an upper or lower side band having same characteristics
  Int matchSpw(const MFrequency& refFreq, uInt nChan, 
	       const Quantum<Double>& bandwidth, Int ifChain,
	       const Quantum<Double>& tolerance, Vector<Double>& otherFreqs, 
	       Bool& reversed) const;

protected:
  //# default constructor creates a object that is not usable. Use the attach
  //# function correct this.
  ROMSSpWindowColumns();

  //# attach this object to the supplied table.
  void attach(const MSSpectralWindow& msSpWindow);

private:
  //# Make the assignment operator and the copy constructor private to prevent
  //# any compiler generated one from being used.
  ROMSSpWindowColumns(const ROMSSpWindowColumns&);
  ROMSSpWindowColumns& operator=(const ROMSSpWindowColumns&);

  //# Check if any optional columns exist and if so attach them.
  void attachOptionalCols(const MSSpectralWindow& msSpWindow);

  //# functions to match the supplied arguments against the values in the
  //# specified row.
  //<group>
  Bool matchRefFrequency(uInt row, MFrequency::Types refType, 
			 Double refFreqInHz, Double tolInHz) const;
  Bool matchRefFreqCnvtrd(uInt row, MFrequency refOrChanFreq, const Bool isRefFreq, const MeasFrame& measFrm,
          const MSDopplerColumns& msdopc, const MSSourceColumns& mssrcc, Double tolInHz) const;
  Bool matchChanFreq(uInt row, const Vector<Double>& chanFreqInHz,
		     Double tolInHz) const;
  Bool matchIfConvChain(uInt row, Int ifChain) const;
  Bool matchTotalBandwidth(uInt row, Double bandwidthInHz,
			   Double tolInHz) const;
  Bool matchNumChan(uInt row, Int nChan) const;
  //</group>


  //# required columns
  ROArrayColumn<Double> chanFreq_p;
  ROArrayColumn<Double> chanWidth_p;
  ROArrayColumn<Double> effectiveBW_p;
  ROScalarColumn<Bool> flagRow_p;
  ROScalarColumn<Int> freqGroup_p;
  ROScalarColumn<String> freqGroupName_p;
  ROScalarColumn<Int> ifConvChain_p;
  ROScalarColumn<Int> measFreqRef_p;
  ROScalarColumn<String> name_p;
  ROScalarColumn<Int> netSideband_p;
  ROScalarColumn<Int> numChan_p;
  ROScalarColumn<Double> refFrequency_p;
  ROArrayColumn<Double> resolution_p;
  ROScalarColumn<Double> totalBandwidth_p;
  //# optional columns
  ROArrayColumn<String> assocNature_p;
  ROArrayColumn<Int> assocSpwId_p;
  ROScalarColumn<Int> bbcNo_p;
  ROScalarColumn<Int> bbcSideband_p;
  ROScalarColumn<Int> dopplerId_p;
  ROScalarColumn<Int> receiverId_p;

  //# Access to Measure columns
  ROArrayMeasColumn<MFrequency> chanFreqMeas_p;
  ROScalarMeasColumn<MFrequency> refFrequencyMeas_p;

  //# Access to Quantum columns
  ROArrayQuantColumn<Double> chanFreqQuant_p;
  ROArrayQuantColumn<Double> chanWidthQuant_p;
  ROArrayQuantColumn<Double> effectiveBWQuant_p;
  ROScalarQuantColumn<Double> refFrequencyQuant_p;
  ROArrayQuantColumn<Double> resolutionQuant_p;
  ROScalarQuantColumn<Double> totalBandwidthQuant_p;
  
  	// m_frame will be set from VLAFiller before calling matchSpw(), which is need when 
	// converting MFrequency to a different frame. ( This did not work out! )
   // MeasFrame* m_frame;

};

// <summary>
// A class to provide easy read-write access to MSSpectralWindow columns
// </summary>

// <use visibility=export>

// <reviewed reviewer="Bob Garwood" date="1997/02/01" tests="" demos="">
// </reviewed>

// <prerequisite>
//   <li> MSSpectralWindow
//   <li> ArrayColumn
//   <li> ScalarColumn
// </prerequisite>
//
// <etymology>
// MSSpectralWindowColumns stands for MeasurementSet SpectralWindow Table columns.
// </etymology>
//
// <synopsis>
// This class provides access to the columns in the MSSpectralWindow Table,
// it does the declaration of all the Scalar and ArrayColumns with the
// correct types, so the application programmer doesn't have to
// worry about getting those right. There is an access function
// for every predefined column. Access to non-predefined columns will still
// have to be done with explicit declarations.
// See <linkto class=MSColumns> MSColumns</linkto> for an example.
// </synopsis>
//
// <motivation>
// See <linkto class=MSColumns> MSColumns</linkto> for the motivation.
// </motivation>

class MSSpWindowColumns: public ROMSSpWindowColumns
{
public:
  // Create a columns object that accesses the data in the specified Table
  MSSpWindowColumns(MSSpectralWindow& msSpWindow);

  // The destructor does nothing special
  ~MSSpWindowColumns();

  // Read-write access to required columns
  // <group>
  ArrayColumn<Double>& chanFreq() {return chanFreq_p;}
  ArrayMeasColumn<MFrequency>& chanFreqMeas() {return chanFreqMeas_p;}
  ArrayQuantColumn<Double>& chanFreqQuant() {return chanFreqQuant_p;}
  ArrayColumn<Double>& chanWidth() {return chanWidth_p;}
  ArrayQuantColumn<Double>& chanWidthQuant() { return chanWidthQuant_p;}
  ArrayColumn<Double>& effectiveBW() {return effectiveBW_p;}
  ArrayQuantColumn<Double>& effectiveBWQuant() { return effectiveBWQuant_p;}
  ScalarColumn<Bool>& flagRow() {return flagRow_p;}
  ScalarColumn<Int>& freqGroup() {return freqGroup_p;}
  ScalarColumn<String>& freqGroupName() {return freqGroupName_p;}
  ScalarColumn<Int>& ifConvChain() {return ifConvChain_p;}
  ScalarColumn<Int>& measFreqRef() {return measFreqRef_p;}
  ScalarColumn<String>& name() {return name_p;}
  ScalarColumn<Int>& netSideband() {return netSideband_p;}
  ScalarColumn<Int>& numChan() {return numChan_p;}
  ScalarColumn<Double>& refFrequency() {return refFrequency_p;}
  ScalarQuantColumn<Double>& refFrequencyQuant() {return refFrequencyQuant_p;}
  ScalarMeasColumn<MFrequency>& refFrequencyMeas() {return refFrequencyMeas_p;}
  ArrayColumn<Double>& resolution() {return resolution_p;}
  ArrayQuantColumn<Double>& resolutionQuant() { return resolutionQuant_p;}
  ScalarColumn<Double>& totalBandwidth() {return totalBandwidth_p;}
  ScalarQuantColumn<Double>& totalBandwidthQuant() {
    return totalBandwidthQuant_p;}
  // </group>

  // Read-write access to optional columns
  // <group>
  ArrayColumn<String>& assocNature() {return assocNature_p;}
  ArrayColumn<Int>& assocSpwId() {return assocSpwId_p;}
  ScalarColumn<Int>& bbcNo() {return bbcNo_p;}
  ScalarColumn<Int>& bbcSideband() {return bbcSideband_p;}
  ScalarColumn<Int>& dopplerId() {return dopplerId_p;}
  ScalarColumn<Int>& receiverId() {return receiverId_p;}
  // </group>

  // Read-only access to required columns
  // <group>
  const ROArrayColumn<Double>& chanFreq() const {
    return ROMSSpWindowColumns::chanFreq();}
  const ROArrayQuantColumn<Double>& chanFreqQuant() const {
    return ROMSSpWindowColumns::chanFreqQuant();}
  const ROArrayMeasColumn<MFrequency>& chanFreqMeas() const {
    return ROMSSpWindowColumns::chanFreqMeas();}
  const ROArrayColumn<Double>& chanWidth() const {
    return ROMSSpWindowColumns::chanWidth();}
  const ROArrayQuantColumn<Double>& chanWidthQuant() const {
    return ROMSSpWindowColumns::chanWidthQuant();}
  const ROArrayColumn<Double>& effectiveBW() const {
    return ROMSSpWindowColumns::effectiveBW();}
  const ROArrayQuantColumn<Double>& effectiveBWQuant() const {
    return ROMSSpWindowColumns::effectiveBWQuant();}
  const ROScalarColumn<Int>& freqGroup() const {
    return ROMSSpWindowColumns::freqGroup();}
  const ROScalarColumn<String>& freqGroupName() const {
    return ROMSSpWindowColumns::freqGroupName();}
  const ROScalarColumn<Int>& ifConvChain() const {
    return ROMSSpWindowColumns::ifConvChain();}
  const ROScalarColumn<Bool>& flagRow() const {
    return ROMSSpWindowColumns::flagRow();}
  const ROScalarColumn<Int>& measFreqRef() const {
    return ROMSSpWindowColumns::measFreqRef();}
  const ROScalarColumn<String>& name() const {
    return ROMSSpWindowColumns::name();}
  const ROScalarColumn<Int>& netSideband() const {
    return ROMSSpWindowColumns::netSideband();}
  const ROScalarColumn<Int>& numChan() const {
    return ROMSSpWindowColumns::numChan();}
  const ROScalarColumn<Double>& refFrequency() const {
    return ROMSSpWindowColumns::refFrequency();}
  const ROScalarQuantColumn<Double>& refFrequencyQuant() const {
    return ROMSSpWindowColumns::refFrequencyQuant();}
  const ROScalarMeasColumn<MFrequency>& refFrequencyMeas() const {
    return ROMSSpWindowColumns::refFrequencyMeas();}
  const ROArrayColumn<Double>& resolution() const {
    return ROMSSpWindowColumns::resolution();}
  const ROArrayQuantColumn<Double>& resolutionQuant() const {
    return ROMSSpWindowColumns::resolutionQuant();}
  const ROScalarColumn<Double>& totalBandwidth() const {
    return ROMSSpWindowColumns::totalBandwidth();}
  const ROScalarQuantColumn<Double>& totalBandwidthQuant() const {
    return ROMSSpWindowColumns::totalBandwidthQuant();}
  // </group>

  // Read-only access to optional columns
  // <group>
  const ROArrayColumn<String>& assocNature() const {
    return ROMSSpWindowColumns::assocNature();}
  const ROArrayColumn<Int>& assocSpwId() const {
    return ROMSSpWindowColumns::assocSpwId();}
  const ROScalarColumn<Int>& bbcNo() const {
    return ROMSSpWindowColumns::bbcNo();}
  const ROScalarColumn<Int>& bbcSideband() const {
    return ROMSSpWindowColumns::bbcSideband();}
  const ROScalarColumn<Int>& dopplerId() const {
    return ROMSSpWindowColumns::dopplerId();}
  const ROScalarColumn<Int>& receiverId() const {
    return ROMSSpWindowColumns::receiverId();}
  // </group>

protected:
  //# default constructor creates a object that is not usable. Use the attach
  //# function correct this.
  MSSpWindowColumns();

  //# attach this object to the supplied table.
  void attach(MSSpectralWindow& msSpWindow);

private:
  //# Make the assignment operator and the copy constructor private to prevent
  //# any compiler generated one from being used.
  MSSpWindowColumns(const MSSpWindowColumns&);
  MSSpWindowColumns& operator=(const MSSpWindowColumns&);

  //# Check if any optional columns exist and if so attach them.
  void attachOptionalCols(MSSpectralWindow& msSpWindow);
  
  //# required columns
  ArrayColumn<Double> chanFreq_p;
  ArrayColumn<Double> chanWidth_p;
  ArrayColumn<Double> effectiveBW_p;
  ScalarColumn<Bool> flagRow_p;
  ScalarColumn<Int> freqGroup_p;
  ScalarColumn<String> freqGroupName_p;
  ScalarColumn<Int> ifConvChain_p;
  ScalarColumn<Int> measFreqRef_p;
  ScalarColumn<String> name_p;
  ScalarColumn<Int> netSideband_p;
  ScalarColumn<Int> numChan_p;
  ScalarColumn<Double> refFrequency_p;
  ArrayColumn<Double> resolution_p;
  ScalarColumn<Double> totalBandwidth_p;
  //# optional columns
  ArrayColumn<String> assocNature_p;
  ArrayColumn<Int> assocSpwId_p;
  ScalarColumn<Int> bbcNo_p;
  ScalarColumn<Int> bbcSideband_p;
  ScalarColumn<Int> dopplerId_p;
  ScalarColumn<Int> receiverId_p;

  //# Access to Measure columns
  ArrayMeasColumn<MFrequency> chanFreqMeas_p;
  ScalarMeasColumn<MFrequency> refFrequencyMeas_p;

  //# Access to Quantum columns
  ArrayQuantColumn<Double> chanFreqQuant_p;
  ArrayQuantColumn<Double> chanWidthQuant_p;
  ArrayQuantColumn<Double> effectiveBWQuant_p;
  ScalarQuantColumn<Double> refFrequencyQuant_p;
  ArrayQuantColumn<Double> resolutionQuant_p;
  ScalarQuantColumn<Double> totalBandwidthQuant_p;
};

} //# NAMESPACE CASACORE - END

#endif