Source
xxxxxxxxxx
virtual casacore::Int getBandID(const casacore::Double& freq, const casacore::String& telescopeName, const casacore::String& bandName) = 0;
//# ATerm.h: Definition for ATerm
//# Copyright (C) 2007
//# 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 adressed 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$
namespace casa{
namespace refim{
using namespace vi;
// <summary>
// The base class to represent the Aperture-Term of the Measurement Equation.
// </summary>
// <use visibility=export>
// <prerequisite>
// </prerequisite>
// <etymology>
// A-Term to account for the effects of the antenna primary beam(s).
// </etymology>
//
// <synopsis>
//
//</synopsis>
class ATerm: public CFTerms
{
public:
ATerm ();
virtual ~ATerm () {};
virtual casacore::String name() = 0;
virtual void makeFullJones(casacore::ImageInterface<casacore::Complex>& pbImage,
const VisBuffer2& vb,
casacore::Bool doSquint, casacore::Int& bandID, casacore::Double freqVal)=0;
virtual void applySky(casacore::ImageInterface<casacore::Float>& outputImages,
const VisBuffer2& vb,
const casacore::Bool doSquint=true,
const casacore::Int& cfKey=0,
const casacore::Int& muellerTerm=0,
const casacore::Double freqVal=-1.0) = 0;
virtual void applySky(casacore::ImageInterface<casacore::Complex>& outputImages,
const VisBuffer2& vb,
const casacore::Bool doSquint=true,
const casacore::Int& cfKey=0,
const casacore::Int& muellerTerm=0,
const casacore::Double freqVal=-1.0) = 0;
virtual void applySky(casacore::ImageInterface<casacore::Complex>& outImages,
const casacore::Double& pa,
const casacore::Bool doSquint,