X-shooter Pipeline Reference Manual 3.8.15
xsh_dump.h
Go to the documentation of this file.
1/* *
2 * This file is part of the ESO X-shooter Pipeline *
3 * Copyright (C) 2006 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-12-02 14:15:28 $
23 * $Revision: 1.7 $
24 * $Name: not supported by cvs2svn $
25 */
26
27#ifndef XSH_DUMP_H
28#define XSH_DUMP_H
29
30#include <cpl.h>
31
32cpl_error_code xsh_print_cpl_propertylist(const cpl_propertylist *pl,
33 long low, long high);
34cpl_error_code xsh_print_cpl_property(const cpl_property *);
35
36cpl_error_code xsh_print_cpl_frameset( cpl_frameset *);
37cpl_error_code xsh_print_cpl_frame(const cpl_frame *);
38
39const char *xsh_tostring_cpl_type(cpl_type t);
40const char *xsh_tostring_cpl_frame_type(cpl_frame_type);
41const char *xsh_tostring_cpl_frame_group(cpl_frame_group);
42const char *xsh_tostring_cpl_frame_level(cpl_frame_level);
43
44#endif /* XSH_DUMP_H */
const char * xsh_tostring_cpl_frame_group(cpl_frame_group)
Convert a frame group to a string.
Definition: xsh_dump.c:301
cpl_error_code xsh_print_cpl_frameset(cpl_frameset *)
Print a frame set.
Definition: xsh_dump.c:201
const char * xsh_tostring_cpl_type(cpl_type t)
Convert a CPL type to a string.
Definition: xsh_dump.c:359
cpl_error_code xsh_print_cpl_property(const cpl_property *)
Print a property.
Definition: xsh_dump.c:103
cpl_error_code xsh_print_cpl_propertylist(const cpl_propertylist *pl, long low, long high)
Print a property list.
Definition: xsh_dump.c:65
const char * xsh_tostring_cpl_frame_level(cpl_frame_level)
Convert a frame level to a string.
Definition: xsh_dump.c:329
cpl_error_code xsh_print_cpl_frame(const cpl_frame *)
Print a frame.
Definition: xsh_dump.c:243
const char * xsh_tostring_cpl_frame_type(cpl_frame_type)
Convert a frame type to a string.
Definition: xsh_dump.c:273