casa
$Rev:20696$
|
00001 //# PWFCleanImageSkyModel.h: Parallelized version of WFCleanImageSkyModel 00002 //# Copyright (C) 1996,1997,1998,1999,2002 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 //# $Id$ 00027 00028 #ifndef SYNTHESIS_PWFCLEANIMAGESKYMODEL_H 00029 #define SYNTHESIS_PWFCLEANIMAGESKYMODEL_H 00030 00031 #include <synthesis/MeasurementComponents/WFCleanImageSkyModel.h> 00032 00033 namespace casa { //# NAMESPACE CASA - BEGIN 00034 00035 //forward 00036 class SkyEquation; 00037 00038 // <summary> 00039 // Parallelized version of class WFCleanImageSkyModel 00040 // </summary> 00041 00042 // <use visibility=export> 00043 00044 // <reviewed reviewer="" date="" tests="" demos=""> 00045 00046 // <prerequisite> 00047 // <li> <linkto class=ImageSkyModel>ImageSkyModel</linkto> module 00048 // <li> <linkto class=WFCleanImageSkyModel>WFCleanImageSkyModel</linkto> module 00049 // </prerequisite> 00050 // 00051 // <etymology> 00052 // From "parallel", "wide-field" and "image sky model" 00053 // </etymology> 00054 // 00055 // <synopsis> 00056 // This class is a parallelized version of class WFCleanImageSkyModel, 00057 // implemented as an inherited specialization. The parallel class 00058 // uses the same algorithms as the serial parent class, except it 00059 // is modified to support parallel processing. 00060 // </synopsis> 00061 // 00062 // <example> 00063 // See the example for <linkto class=SkyModel>SkyModel</linkto>. 00064 // </example> 00065 // 00066 // <motivation> 00067 // </motivation> 00068 // 00069 // <todo asof="97/10/01"> 00070 // <ul> Allow specification of more control parameters 00071 // </todo> 00072 00073 class PWFCleanImageSkyModel : public WFCleanImageSkyModel { 00074 00075 public: 00076 // Constructors 00077 PWFCleanImageSkyModel(); 00078 PWFCleanImageSkyModel(const Int nfacets); 00079 00080 // Null destructor 00081 virtual ~PWFCleanImageSkyModel(){}; 00082 00083 // Parallelized solve for the sky model 00084 virtual Bool solve(SkyEquation& se); 00085 00086 // Parallelized formation of the approximate PSF's 00087 virtual void makeApproxPSFs(SkyEquation& se); 00088 }; 00089 00090 00091 } //# NAMESPACE CASA - END 00092 00093 #endif