casa
$Rev:20696$
|
00001 //# BJonesMRec.h: BJones cal_main table record access & creation 00002 //# Copyright (C) 1996,1997,1998,2003 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be adressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# 00027 //# $Id$ 00028 00029 #ifndef CALIBRATION_BJONESMREC_H 00030 #define CALIBRATION_BJONESMREC_H 00031 00032 #include <casa/aips.h> 00033 #include <synthesis/CalTables/SolvableVJMRec.h> 00034 00035 namespace casa { //# NAMESPACE CASA - BEGIN 00036 00037 // <summary> 00038 // BJonesMRec: BJones cal_main table record access & creation 00039 // </summary> 00040 00041 // <use visibility=export> 00042 00043 // <reviewed reviewer="" date="" tests="" demos=""> 00044 00045 // <prerequisite> 00046 //<li><linkto class="CalMainRecord">CalMainRecord</linkto> module 00047 //<li><linkto class="VisJonesMRec">VisJonesMRec</linkto> module 00048 //<li><linkto class="SolvableVisJonesMRec">SolvableVisJonesMRec</linkto> module 00049 // </prerequisite> 00050 // 00051 // <etymology> 00052 // From "BJones" and "main record". 00053 // </etymology> 00054 // 00055 // <synopsis> 00056 // The BJonesMRec class allows the creation of records for the 00057 // main calibration table of BJones type, and provides access 00058 // to the individual record fields. BJones matrices are used to 00059 // store bandpass corrections in the Measurement Equation formalism. 00060 // </etymology> 00061 // 00062 // <example> 00063 // <srcblock> 00064 // </srcblock> 00065 // </example> 00066 // 00067 // <motivation> 00068 // Encapsulate access to BJones calibration table records. 00069 // </motivation> 00070 // 00071 // <todo asof="98/01/01"> 00072 // (i) Deal with non-standard columns. 00073 // </todo> 00074 00075 class BJonesMRec : public SolvableVisJonesMRec 00076 { 00077 public: 00078 // Default null constructor, and destructor 00079 BJonesMRec(); 00080 ~BJonesMRec() {}; 00081 00082 // Construct from an existing record 00083 BJonesMRec (const Record& inpRec); 00084 00085 }; 00086 00087 00088 } //# NAMESPACE CASA - END 00089 00090 #endif