SINFONI Pipeline Reference Manual  2.5.2
sinfo_dump.h
1 /* *
2  * This file is part of the ESO UVES Pipeline *
3  * Copyright (C) 2004,2005 European Southern Observatory *
4  * *
5  * This library is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the Free Software *
17  * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA *
18  * */
19 
20 /*
21  * $Author: amodigli $
22  * $Date: 2011-11-23 17:29:09 $
23  * $Revision: 1.6 $
24  * $Name: not supported by cvs2svn $
25  * $Log: not supported by cvs2svn $
26  * Revision 1.5 2006/10/25 06:46:09 amodigli
27  * fixed warnings from static checks
28  *
29  * Revision 1.4 2006/10/17 11:13:30 amodigli
30  * added config.h
31  *
32  * Revision 1.3 2006/10/16 07:26:23 amodigli
33  * shortened line length
34  *
35  * Revision 1.2 2006/10/04 06:17:45 amodigli
36  * added doxygen doc
37  *
38  * Revision 1.1 2006/08/09 12:20:11 amodigli
39  * added sinfo_dump.h sinfo_dump.c
40  *
41  * Revision 1.2 2005/12/19 16:17:56 jmlarsen
42  * Replaced bool -> int
43  *
44  */
45 #ifndef SINFO_DUMP_H
46 #define SINFO_DUMP_H
47 
48 #ifdef HAVE_CONFIG_H
49 # include <config.h>
50 #endif
51 
52 #include <cpl.h>
53 #include <sinfo_cpl_size.h>
54 
55 cpl_error_code
56 sinfo_print_cpl_propertylist(const cpl_propertylist *pl,
57  long low,
58  long high);
59 
60 cpl_error_code
61 sinfo_print_cpl_property(const cpl_property *);
62 
63 cpl_error_code
64 sinfo_print_cpl_frameset(const cpl_frameset *);
65 
66 cpl_error_code
67 sinfo_print_cpl_frame(const cpl_frame *);
68 
69 const char *
70 sinfo_tostring_cpl_type(cpl_type t);
71 
72 const char *
73 sinfo_tostring_cpl_frame_type(cpl_frame_type);
74 
75 const char *
76 sinfo_tostring_cpl_frame_group(cpl_frame_group);
77 
78 const char *
79 sinfo_tostring_cpl_frame_level(cpl_frame_level);
80 
81 #endif /* SINFO_DUMP_H */