HAWKI Pipeline Reference Manual  1.8.12
hawki_save.h
1 /* $Id: hawki_save.h,v 1.5 2012/12/05 14:57:03 cgarcia Exp $
2  *
3  * This file is part of the HAWKI Pipeline
4  * Copyright (C) 2002,2003 European Southern Observatory
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20 
21 /*
22  * $Author: cgarcia $
23  * $Date: 2012/12/05 14:57:03 $
24  * $Revision: 1.5 $
25  * $Name: hawki-1_8_12 $
26  */
27 
28 #ifndef HAWKI_SAVE_H
29 #define HAWKI_SAVE_H
30 
31 /*-----------------------------------------------------------------------------
32  Includes
33  -----------------------------------------------------------------------------*/
34 
35 #include "hawki_distortion.h"
36 
37 /*-----------------------------------------------------------------------------
38  Functions prototypes
39  -----------------------------------------------------------------------------*/
40 
41 CPL_BEGIN_DECLS
43 (cpl_frameset * allframes,
44  const cpl_parameterlist * parlist,
45  const cpl_frameset * usedframes,
46  const cpl_imagelist * images,
47  const char * recipe,
48  const char * procat,
49  const char * protype,
50  const cpl_propertylist * applist,
51  const cpl_propertylist ** applists,
52  const char * filename);
54 (cpl_frameset * allframes,
55  const cpl_parameterlist * parlist,
56  const cpl_frameset * usedframes,
57  const cpl_image ** images,
58  const char * recipe,
59  const char * procat,
60  const char * protype,
61  const cpl_propertylist * applist,
62  const cpl_propertylist ** applists,
63  const char * filename);
65 (cpl_frameset * allframes,
66  const cpl_parameterlist * parlist,
67  const cpl_frameset * usedframes,
68  const cpl_table ** tables,
69  const char * recipe,
70  const char * procat,
71  const char * protype,
72  const cpl_propertylist * applist,
73  const cpl_propertylist ** applists,
74  const char * filename);
76 (cpl_frameset * allframes,
77  const cpl_parameterlist * parlist,
78  const cpl_frameset * usedframes,
79  const hawki_distortion ** distortion,
80  const char * recipe,
81  const cpl_propertylist * applist,
82  const cpl_propertylist ** applists,
83  const char * filename_x,
84  const char * filename_y);
86 (cpl_frameset * allframes,
87  const cpl_parameterlist * parlist,
88  const cpl_frameset * usedframes,
89  const char * recipe,
90  const char * procat,
91  const char * protype,
92  const cpl_propertylist * applist,
93  const char * filename);
95 (const cpl_frameset * allframes,
96  const cpl_image * image,
97  int iext,
98  const cpl_propertylist * ext_prop_list,
99  const char * filename);
100 const char * hawki_get_extref_file(const cpl_frameset *);
101 CPL_END_DECLS
102 
103 #endif