AWConvFunc2.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef SYNTHESIS_AWCONVFUNC2_H
00030 #define SYNTHESIS_AWCONVFUNC2_H
00031
00032 #include <synthesis/TransformMachines/ConvolutionFunction.h>
00033 #include <synthesis/TransformMachines/PolOuterProduct.h>
00034 #include <coordinates/Coordinates/DirectionCoordinate.h>
00035 #include <synthesis/TransformMachines/AWConvFunc.h>
00036 #include <synthesis/TransformMachines/CFStore2.h>
00037 #include <synthesis/TransformMachines/CFBuffer.h>
00038 #include <synthesis/TransformMachines/PSTerm.h>
00039 #include <synthesis/TransformMachines/WTerm.h>
00040 #include <synthesis/TransformMachines/ATerm.h>
00041 #include <images/Images/ImageInterface.h>
00042 #include <images/Images/TempImage.h>
00043 #include <casa/Logging/LogIO.h>
00044 #include <casa/Logging/LogSink.h>
00045 #include <casa/Logging/LogOrigin.h>
00046
00047 namespace casa {
00048 template<class T> class ImageInterface;
00049 template<class T> class Matrix;
00050 class VisBuffer;
00051
00052
00053
00054
00055 class AWConvFunc2 : public AWConvFunc
00056 {
00057 public:
00058 AWConvFunc2(const CountedPtr<ATerm> ATerm,
00059 const CountedPtr<PSTerm> psTerm,
00060 const CountedPtr<WTerm> wTerm,
00061 const Bool wbAWP=False):
00062 AWConvFunc(ATerm, psTerm, wTerm, wbAWP)
00063 {}
00064
00065 ~AWConvFunc2() {};
00066 virtual void fillConvFuncBuffer(CFBuffer& cfb, CFBuffer& cfWtb,
00067 const Int& nx, const Int& ny,
00068 const Vector<Double>& freqValues,
00069 const Vector<Double>& wValues,
00070 const Double& wScale,
00071 const PolMapType& muellerElements,
00072 const PolMapType& muellerElementsIndex,
00073 const VisBuffer& vb, const Float& psScale,
00074 PSTerm& psTerm, WTerm& wTerm, ATerm& aTerm);
00075 };
00076
00077
00078
00079 };
00080 #endif