00001 /* $Id: ObitDCon.h,v 1.3 2007/08/31 17:24:48 bcotton Exp $ */ 00002 /*--------------------------------------------------------------------*/ 00003 /*; Copyright (C) 2004,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 OBITDCON_H 00029 #define OBITDCON_H 00030 00031 #include "Obit.h" 00032 #include "ObitErr.h" 00033 #include "ObitImageMosaic.h" 00034 00035 /*-------- Obit: Software for the recently deceased ------------------*/ 00036 /*--------------Class definitions-------------------------------------*/ 00037 00065 typedef struct { 00066 #include "ObitDConDef.h" /* this class definition */ 00067 } ObitDCon; 00068 00069 /*----------------- Macroes ---------------------------*/ 00075 #define ObitDConUnref(in) ObitUnref (in) 00076 00082 #define ObitDConRef(in) ObitRef (in) 00083 00090 #define ObitDConIsA(in) ObitIsA (in, ObitDConGetClass()) 00091 00092 /*---------------Public functions---------------------------*/ 00094 void ObitDConClassInit (void); 00095 00097 ObitDCon* newObitDCon (gchar* name); 00098 00100 ObitDCon* ObitDConCreate (gchar* name, ObitImageMosaic *mosaic, 00101 ObitErr *err); 00102 00104 gconstpointer ObitDConGetClass (void); 00105 00107 ObitDCon* ObitDConCopy (ObitDCon *in, ObitDCon *out, ObitErr *err); 00108 00110 void ObitDConClone (ObitDCon *in, ObitDCon *out, ObitErr *err); 00111 00113 void ObitDConGetParms (ObitDCon *in, ObitErr *err); 00114 typedef void (*ObitDConGetParmsFP) (ObitDCon *in, ObitErr *err); 00115 00117 void ObitDConDeconvolve (ObitDCon *in, ObitErr *err); 00118 typedef void (*ObitDConDeconvolveFP) (ObitDCon *in, ObitErr *err); 00119 00120 /*----------- ClassInfo Structure -----------------------------------*/ 00126 typedef struct { 00127 #include "ObitDConClassDef.h" 00128 } ObitDConClassInfo; 00129 00130 #endif /* OBITDCON_H */
1.3.9.1