Line data Source code
1 : //# CalInterpolation.cc: Implementation of CalInterpolation.h 2 : //# Copyright (C) 1996,1997,1998,2001,2003 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 : //# $Id$ 27 : //---------------------------------------------------------------------------- 28 : 29 : #include <synthesis/CalTables/CalInterpolation.h> 30 : 31 : using namespace casacore; 32 : namespace casa { //# NAMESPACE CASA - BEGIN 33 : 34 : //---------------------------------------------------------------------------- 35 : 36 0 : CalInterpolation::CalInterpolation() 37 : { 38 : // Null constructor 39 : // Output to private data: 40 : // axes_p Vector<MSCalEnums::colDef> Axes 41 : // type_p CalInterpolation::Type Type 42 : // weighting_p CalInterpolation::Weighting Weighting 43 : // windows_p Vector<Quantity> Windows 44 : // npoly_p Int Polynomial order 45 : // msIndex_p Vector<MSSelection> MS match indices 46 : // calIndex_p Vector<MSSelection> Cal match indices 47 : // 48 0 : }; 49 : 50 : //---------------------------------------------------------------------------- 51 : 52 0 : CalInterpolation::~CalInterpolation() 53 : { 54 : // Destructor 55 : // 56 0 : }; 57 : 58 : //---------------------------------------------------------------------------- 59 : 60 0 : CalInterpolation::CalInterpolation (const CalInterpolation& /*other*/) 61 : { 62 : // Copy constructor 63 : // Input: 64 : // other const CalInterpolation& Existing CalInterpolation object 65 : // 66 0 : }; 67 : 68 : //---------------------------------------------------------------------------- 69 : 70 0 : CalInterpolation& CalInterpolation::operator= (const CalInterpolation& other) 71 : { 72 : // Assignment operator 73 : // Input: 74 : // other const CalInterpolation& RHS CalInterpolation object 75 : // Output to private data: 76 : // itsMainTable Table* Ptr to cal_main Table object 77 : // itsDescTable Table* Ptr to cal_desc Table object 78 : // itsHistoryTable Table* Ptr to cal_history Table object 79 : // 80 0 : Bool identity = (this == &other); 81 0 : if (!identity) {}; 82 0 : return *this; 83 : }; 84 : 85 : //---------------------------------------------------------------------------- 86 : 87 : } //# NAMESPACE CASA - END 88 :