00001 /* $Id: irplib_dfs.h,v 1.9 2007/02/12 08:12:39 jmlarsen Exp $ 00002 * 00003 * This file is part of the irplib package 00004 * Copyright (C) 2002,2003 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 02111-1307 USA 00019 */ 00020 00021 /* 00022 * $Author: jmlarsen $ 00023 * $Date: 2007/02/12 08:12:39 $ 00024 * $Revision: 1.9 $ 00025 * $Name: uves-3_3_1 $ 00026 */ 00027 00028 #ifndef IRPLIB_DFS_H 00029 #define IRPLIB_DFS_H 00030 00031 #include <cpl.h> 00032 00033 /*----------------------------------------------------------------------------- 00034 Defines 00035 -----------------------------------------------------------------------------*/ 00036 00037 #define IRPLIB_DFS_FITS ".fits" 00038 #define IRPLIB_DFS_PAF ".paf" 00039 00040 /*----------------------------------------------------------------------------- 00041 Function prototypes 00042 -----------------------------------------------------------------------------*/ 00043 00044 cpl_error_code irplib_image_save(cpl_frameset *, 00045 const cpl_parameterlist *, 00046 const cpl_frameset *, 00047 const cpl_image *, 00048 cpl_type_bpp, 00049 const char *, 00050 const char *, 00051 const cpl_propertylist *, 00052 const char *, 00053 const char *, 00054 const char *); 00055 00056 cpl_error_code irplib_table_save(cpl_frameset *, 00057 const cpl_parameterlist *, 00058 const cpl_frameset *, 00059 const cpl_table *, 00060 const cpl_propertylist *, 00061 const char *, 00062 const char *, 00063 const cpl_propertylist *, 00064 const char *, 00065 const char *, 00066 const char *); 00067 00068 cpl_error_code irplib_paf_save(const char *, const char *, 00069 const cpl_propertylist *, const char *); 00070 00071 #endif
1.4.6