HAWKI Pipeline Reference Manual  1.8.12
hawki_pfits.h
1 /* $Id: hawki_pfits.h,v 1.16 2013/01/15 09:57:13 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: 2013/01/15 09:57:13 $
24  * $Revision: 1.16 $
25  * $Name: hawki-1_8_12 $
26  */
27 
28 #ifndef HAWKI_PFITS_H
29 #define HAWKI_PFITS_H
30 
31 /*-----------------------------------------------------------------------------
32  Includes
33  -----------------------------------------------------------------------------*/
34 
35 #include <cpl.h>
36 
37 /*-----------------------------------------------------------------------------
38  Functions prototypes
39  -----------------------------------------------------------------------------*/
40 
41 CPL_BEGIN_DECLS
42 const char * hawki_pfits_get_extname(const cpl_propertylist * plist) ;
43 double hawki_pfits_get_airmass_start(const cpl_propertylist * plist) ;
44 double hawki_pfits_get_airmass_end(const cpl_propertylist * plist) ;
45 double hawki_pfits_get_humidity_level(const cpl_propertylist * plist) ;
46 double hawki_pfits_get_targ_alpha(const cpl_propertylist * plist) ;
47 double hawki_pfits_get_targ_alpha_hhmmss(const cpl_propertylist * plist) ;
48 double hawki_pfits_get_targ_delta(const cpl_propertylist * plist) ;
49 double hawki_pfits_get_targ_delta_ddmmss(const cpl_propertylist * plist) ;
50 double hawki_pfits_get_targ_equinox(const cpl_propertylist * plist);
51 double hawki_pfits_get_targ_epoch(const cpl_propertylist * plist);
52 double hawki_pfits_get_ra(const cpl_propertylist * plist) ;
53 double hawki_pfits_get_dec(const cpl_propertylist * plist) ;
54 const char * hawki_pfits_get_arcfile(const cpl_propertylist * plist) ;
55 const char * hawki_pfits_get_procatg(const cpl_propertylist * plist) ;
56 const char * hawki_pfits_get_date_obs(const cpl_propertylist * plist) ;
57 int hawki_pfits_get_naxis1(const cpl_propertylist * plist) ;
58 int hawki_pfits_get_naxis2(const cpl_propertylist * plist) ;
59 double hawki_pfits_get_crval1(const cpl_propertylist * plist) ;
60 double hawki_pfits_get_crval2(const cpl_propertylist * plist) ;
61 double hawki_pfits_get_crpix1(const cpl_propertylist * plist) ;
62 double hawki_pfits_get_crpix2(const cpl_propertylist * plist) ;
63 double hawki_pfits_get_cdelta1(const cpl_propertylist * plist) ;
64 double hawki_pfits_get_cdelta2(const cpl_propertylist * plist) ;
65 double hawki_pfits_get_pixscale(const cpl_propertylist * plist) ;
66 double hawki_pfits_get_cumoffseta(const cpl_propertylist * plist);
67 double hawki_pfits_get_cumoffsetd(const cpl_propertylist * plist);
68 double hawki_pfits_get_cumoffsetx(const cpl_propertylist * plist);
69 double hawki_pfits_get_cumoffsety(const cpl_propertylist * plist);
70 double hawki_pfits_get_posangle(const cpl_propertylist * plist) ;
71 int hawki_pfits_get_nexp(const cpl_propertylist * plist) ;
72 int hawki_pfits_get_ndit(const cpl_propertylist * plist) ;
73 int hawki_pfits_get_ndsamples(const cpl_propertylist * plist);
74 double hawki_pfits_get_dit(const cpl_propertylist * plist) ;
75 const char * hawki_pfits_get_filter(const cpl_propertylist * plist) ;
76 double hawki_pfits_get_focus(const cpl_propertylist * plist) ;
77 double hawki_pfits_get_elevation(const cpl_propertylist * plist);
78 double hawki_pfits_get_azimut(const cpl_propertylist * plist);
79 double hawki_pfits_get_relhum(const cpl_propertylist * plist);
80 double hawki_pfits_get_tau0(const cpl_propertylist * plist);
81 double hawki_pfits_get_obs_temp(const cpl_propertylist * plist);
82 double hawki_pfits_get_wind_dir(const cpl_propertylist * plist);
83 double hawki_pfits_get_wind_speed(const cpl_propertylist * plist);
84 double hawki_pfits_get_ao_fwhm(const cpl_propertylist * plist);
85 double hawki_pfits_get_rotator_start(const cpl_propertylist * plist);
86 double hawki_pfits_get_rotator_end(const cpl_propertylist * plist);
87 double hawki_pfits_get_obs_seeing_start(const cpl_propertylist * plist);
88 double hawki_pfits_get_obs_seeing_end(const cpl_propertylist * plist);
89 double hawki_pfits_get_pressure_start(const cpl_propertylist * plist);
90 double hawki_pfits_get_pressure_end(const cpl_propertylist * plist);
91 double hawki_pfits_get_parangle_start(const cpl_propertylist * plist);
92 double hawki_pfits_get_parangle_end(const cpl_propertylist * plist);
93 double hawki_pfits_get_comb_cumoffsetx(const cpl_propertylist * plist);
94 double hawki_pfits_get_comb_cumoffsety(const cpl_propertylist * plist);
95 double hawki_pfits_get_comb_posx(const cpl_propertylist * plist);
96 double hawki_pfits_get_comb_posy(const cpl_propertylist * plist);
97 CPL_END_DECLS
98 
99 #endif