Line data Source code
1 : // -*- C++ -*- 2 : //# CTMainColInterface.h: The generic interface for tables that can be used with MSSelection 3 : //# Copyright (C) 1996,1997,1998,1999,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 : //# 28 : //# $Id$ 29 : 30 : #ifndef CT_CTMAINCOLINTERFACE_H 31 : #define CT_CTMAINCOLINTERFACE_H 32 : 33 : #include <casacore/casa/aips.h> 34 : #include <casacore/casa/BasicSL/String.h> 35 : #include <casacore/casa/Arrays/Vector.h> 36 : #include <casacore/casa/Arrays/Matrix.h> 37 : #include <casacore/casa/Arrays/Cube.h> 38 : #include <casacore/tables/TaQL/ExprNode.h> 39 : #include <casacore/ms/MeasurementSets/MeasurementSet.h> 40 : #include <casacore/ms/MeasurementSets/MSMainEnums.h> 41 : #include <casacore/ms/MSSel/MSSelectionError.h> 42 : #include <casacore/ms/MSSel/MSSelectableTable.h> 43 : #include <synthesis/CalTables/CTMainColumns.h> 44 : namespace casa { //# NAMESPACE CASA - BEGIN 45 : 46 : 47 : class CTMainColInterface: public casacore::MSSelectableMainColumn 48 : { 49 : public: 50 : CTMainColInterface():MSSelectableMainColumn(), ctCols_p(NULL) {}; 51 2264 : CTMainColInterface(const casacore::Table& ctAsTable): casacore::MSSelectableMainColumn(ctAsTable) 52 2264 : {init(ctAsTable);} 53 : 54 4166 : virtual ~CTMainColInterface() {if (ctCols_p) delete ctCols_p;}; 55 : 56 2264 : virtual void init(const casacore::Table& ctAsTable) 57 2264 : {casacore::MSSelectableMainColumn::init(ctAsTable);ct_p = NewCalTable(ctAsTable); ctCols_p=new ROCTMainColumns(ct_p);} 58 : 59 12 : virtual const casacore::ArrayColumn<casacore::Bool>& flag() {return ctCols_p->flag();} 60 : 61 36 : virtual casacore::Bool flagRow(casacore::rownr_t i) {return allTrue(ctCols_p->flag()(i));} 62 : 63 : // For now, return timeEPQuant() even for exposureQuant. 64 12 : virtual const casacore::ROScalarQuantColumn<casacore::Double>& exposureQuant() {return ctCols_p->timeEPQuant();}; 65 12 : virtual const casacore::ROScalarQuantColumn<casacore::Double>& timeQuant() {return ctCols_p->timeQuant();} 66 : 67 : // This is not an MS 68 0 : virtual const casacore::MeasurementSet *asMS(){return NULL;}; 69 : private: 70 : NewCalTable ct_p; 71 : ROCTMainColumns *ctCols_p; 72 : 73 : }; 74 : 75 : } //# NAMESPACE CASA - END 76 : 77 : #endif