gilocalization.h
00001 /* $Id: gilocalization.h,v 1.2 2007/03/06 19:41:38 rpalsa Exp $ 00002 * 00003 * This file is part of the GIRAFFE Pipeline 00004 * Copyright (C) 2002-2006 European Southern Observatory 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (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 License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00019 */ 00020 00021 /* 00022 * $Author: rpalsa $ 00023 * $Date: 2007/03/06 19:41:38 $ 00024 * $Revision: 1.2 $ 00025 * $Name: giraffe-2_8_8 $ 00026 */ 00027 00028 #ifndef GILOCALIZATION_H 00029 #define GILOCALIZATION_H 00030 00031 #include <giimage.h> 00032 #include <gitable.h> 00033 #include <gipsfdata.h> 00034 00035 00036 #ifdef __cplusplus 00037 extern "C" { 00038 #endif 00039 00040 struct GiLocalization { 00041 GiImage* locy; 00042 GiImage* locw; 00043 GiTable* locc; 00044 GiPsfData* psf; 00045 }; 00046 00047 typedef struct GiLocalization GiLocalization; 00048 00049 GiLocalization* giraffe_localization_new(void); 00050 GiLocalization* giraffe_localization_create(GiImage* locy, 00051 GiImage* locw, 00052 GiTable* locc, 00053 GiPsfData* psf); 00054 void giraffe_localization_delete(GiLocalization* localization); 00055 void giraffe_localization_destroy(GiLocalization* localization); 00056 00057 00058 #ifdef __cplusplus 00059 } 00060 #endif 00061 00062 #endif /* GILOCALIZATION_H */