Line data Source code
1 : //# TimeVarVJMCol.cc: Implementation of TimeVarVJMCol.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/TimeVarVJMCol.h> 30 : 31 : using namespace casacore; 32 : namespace casa { //# NAMESPACE CASA - BEGIN 33 : 34 : //---------------------------------------------------------------------------- 35 : 36 0 : ROTimeVarVisJonesMCol::ROTimeVarVisJonesMCol (const TimeVarVisJonesTable& 37 0 : tvvjTable) : 38 0 : ROVisJonesMCol (tvvjTable) 39 : { 40 : // Construct from a calibration table 41 : // Input: 42 : // tvvjTable const TimeVarVisJonesTable& TVVJ calibration table 43 : // Output to private data: 44 : // ROVisJonesMCol ROVisJonesMCol Read-only VJ cal main col 45 0 : }; 46 : 47 : //---------------------------------------------------------------------------- 48 : 49 3 : TimeVarVisJonesMCol::TimeVarVisJonesMCol (TimeVarVisJonesTable& tvvjTable) : 50 3 : VisJonesMCol (tvvjTable) 51 : { 52 : // Construct from a calibration table 53 : // Input: 54 : // tvvjTable TimeVarVisJonesTable& TVVJ calibration table 55 : // Output to private data: 56 : // VisJonesMCol VisJonesMCol Read-write VJ cal main col 57 3 : }; 58 : 59 : //---------------------------------------------------------------------------- 60 : 61 0 : ROPJonesMCol::ROPJonesMCol (const PJonesTable& pjTable) : 62 0 : ROTimeVarVisJonesMCol (pjTable) 63 : { 64 : // Construct from a calibration table 65 : // Input: 66 : // pjTable const PJonesTable& PJones cal table 67 : // Output to private data: 68 : // ROTimeVarVisJonesMCol ROTimeVarVisJonesMCol Read-only TVVJ cal 69 : // main col 70 0 : }; 71 : 72 : //---------------------------------------------------------------------------- 73 : 74 0 : PJonesMCol::PJonesMCol (PJonesTable& pjTable) : 75 0 : TimeVarVisJonesMCol (pjTable) 76 : { 77 : // Construct from a calibration table 78 : // Input: 79 : // pjTable PJonesTable& PJones calibration table 80 : // Output to private data: 81 : // TimeVarVisJonesMCol TimeVarVisJonesMCol Read-write TVVJ cal 82 : // main col 83 0 : }; 84 : 85 : //---------------------------------------------------------------------------- 86 : 87 0 : ROCJonesMCol::ROCJonesMCol (const CJonesTable& cjTable) : 88 0 : ROTimeVarVisJonesMCol (cjTable) 89 : { 90 : // Construct from a calibration table 91 : // Input: 92 : // cjTable const CJonesTable& CJones calibration table 93 : // Output to private data: 94 : // ROTimeVarVisJonesMCol ROTimeVarVisJonesMCol Read-only TVVJ cal 95 : // main col 96 0 : }; 97 : 98 : //---------------------------------------------------------------------------- 99 : 100 0 : CJonesMCol::CJonesMCol (CJonesTable& cjTable) : 101 0 : TimeVarVisJonesMCol (cjTable) 102 : { 103 : // Construct from a calibration table 104 : // Input: 105 : // cjTable CJonesTable& CJones calibration table 106 : // Output to private data: 107 : // TimeVarVisJonesMCol TimeVarVisJonesMCol Read-write TVVJ cal 108 : // main col 109 0 : }; 110 : 111 : //---------------------------------------------------------------------------- 112 : 113 : 114 : 115 : } //# NAMESPACE CASA - END 116 :