Main Page | Class List | Directories | File List | Class Members | File Members

ObitDConCleanVis.h

Go to the documentation of this file.
00001 /* $Id: ObitDConCleanVis.h,v 1.20 2007/08/31 17:24:48 bcotton Exp $   */
00002 /*--------------------------------------------------------------------*/
00003 /*;  Copyright (C) 2005-2007                                          */
00004 /*;  Associated Universities, Inc. Washington DC, USA.                */
00005 /*;                                                                   */
00006 /*;  This program is free software; you can redistribute it and/or    */
00007 /*;  modify it under the terms of the GNU General Public License as   */
00008 /*;  published by the Free Software Foundation; either version 2 of   */
00009 /*;  the License, or (at your option) any later version.              */
00010 /*;                                                                   */
00011 /*;  This program is distributed in the hope that it will be useful,  */
00012 /*;  but WITHOUT ANY WARRANTY; without even the implied warranty of   */
00013 /*;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    */
00014 /*;  GNU General Public License for more details.                     */
00015 /*;                                                                   */
00016 /*;  You should have received a copy of the GNU General Public        */
00017 /*;  License along with this program; if not, write to the Free       */
00018 /*;  Software Foundation, Inc., 675 Massachusetts Ave, Cambridge,     */
00019 /*;  MA 02139, USA.                                                   */
00020 /*;                                                                   */
00021 /*;Correspondence about this software should be addressed as follows: */
00022 /*;         Internet email: bcotton@nrao.edu.                         */
00023 /*;         Postal address: William Cotton                            */
00024 /*;                         National Radio Astronomy Observatory      */
00025 /*;                         520 Edgemont Road                         */
00026 /*;                         Charlottesville, VA 22903-2475 USA        */
00027 /*--------------------------------------------------------------------*/
00028 #ifndef OBITDCONCLEANVIS_H 
00029 #define OBITDCONCLEANVIS_H 
00030 
00031 #include "Obit.h"
00032 #include "ObitErr.h"
00033 #include "ObitDConCleanPxList.h"
00034 #include "ObitDConClean.h"
00035 #include "ObitImageMosaic.h"
00036 #include "ObitDConCleanWindow.h"
00037 #include "ObitDConCleanBmHist.h"
00038 #include "ObitDConCleanPxHist.h"
00039 #include "ObitUVImager.h"
00040 #include "ObitSkyModel.h"
00041 #include "ObitDisplay.h"
00042 /*-------- Obit: Software for the recently deceased ------------------*/
00109 /*--------------Class definitions-------------------------------------*/
00111 typedef struct {
00112 #include "ObitDConCleanVisDef.h"   /* this class definition */
00113 } ObitDConCleanVis;
00114 
00115 /*----------------- Macroes ---------------------------*/
00121 #define ObitDConCleanVisUnref(in) ObitUnref (in)
00122 
00128 #define ObitDConCleanVisRef(in) ObitRef (in)
00129 
00136 #define ObitDConCleanVisIsA(in) ObitIsA (in, ObitDConCleanVisGetClass())
00137 
00138 /*---------------Public functions---------------------------*/
00140 void ObitDConCleanVisClassInit (void);
00141 
00143 ObitDConCleanVis* newObitDConCleanVis (gchar* name);
00144 
00146 ObitDConCleanVis* ObitDConCleanVisCreate (gchar* name, ObitUV *uvdata, 
00147                                           ObitErr *err);
00148 
00151 ObitDConCleanVis* 
00152 ObitDConCleanVisCreate2 (gchar* name, ObitUV *uvdata, 
00153                          ObitUVImager *imager, ObitSkyModel *skyModel, 
00154                          ObitErr *err);
00155 
00157 gconstpointer ObitDConCleanVisGetClass (void);
00158 
00160 ObitDConCleanVis* ObitDConCleanVisCopy  (ObitDConCleanVis *in, 
00161                                          ObitDConCleanVis *out, ObitErr *err);
00162 
00164 void ObitDConCleanVisClone (ObitDConCleanVis *in, 
00165                             ObitDConCleanVis *out, ObitErr *err);
00166 
00168 void ObitDConCleanVisDeconvolve (ObitDCon *in, ObitErr *err);
00169 
00171 void  ObitDConCleanVisGetParms (ObitDCon *in, ObitErr *err);
00172 
00174 void  ObitDConCleanVisDefWindow (ObitDConClean *in, ObitErr *err);
00175 
00177 void ObitDConCleanVisSub(ObitDConCleanVis *in, ObitErr *err);
00178 
00180 gboolean ObitDConCleanVisPickNext(ObitDConCleanVis *in, ObitErr *err);
00181 typedef gboolean (*ObitDConCleanVisPickNextFP) (ObitDConClean *in, 
00182                                             ObitErr *err);
00183 
00185 gfloat ObitDConCleanVisQuality(ObitDConCleanVis *in, glong field, 
00186                                ObitErr *err);
00187 typedef gfloat (*ObitDConCleanVisQualityFP) (ObitDConClean *in, glong field,
00188                                              ObitErr *err);
00189 
00191 gboolean ObitDConCleanVisReimage (ObitDConCleanVis *in, ObitUV* uvdata, 
00192                                   ObitErr* err);
00193 typedef gboolean (*ObitDConCleanVisReimageFP) (ObitDConCleanVis *in, ObitUV* uvdata, 
00194                                                ObitErr* err);
00195 
00197 void ObitDConCleanVisAddField (ObitDConCleanVis *in, ObitUV* uvdata, 
00198                                ObitErr* err);
00199 typedef void (*ObitDConCleanVisAddFieldFP) (ObitDConCleanVis *in, ObitUV* uvdata, 
00200                                             ObitErr* err);
00201 
00203 gboolean ObitDConCleanVisRecenter (ObitDConCleanVis *in, ObitUV* uvdata, 
00204                                    ObitErr* err);
00205 typedef gboolean (*ObitDConCleanVisRecenterFP) (ObitDConCleanVis *in, ObitUV* uvdata, 
00206                                               ObitErr* err);
00207 
00209 gboolean ObitDConCleanVisFilter (ObitDConCleanVis *in, gfloat filter[2], 
00210                                  ObitErr* err);
00211 typedef gboolean (*ObitDConCleanVisFilterFP) (ObitDConCleanVis *in, 
00212                                               gfloat filter[2], ObitErr* err);
00213 
00214 /*----------- ClassInfo Structure -----------------------------------*/
00220 typedef struct  {
00221 #include "ObitDConCleanVisClassDef.h"
00222 } ObitDConCleanVisClassInfo; 
00223 
00224 #endif /* OBITDCONCLEANVIS_H */ 

Generated on Fri Aug 31 22:13:04 2007 for Obit by  doxygen 1.3.9.1