FORS Pipeline Reference Manual  4.12.5
fors_pfits.c
1 /* $Id: fors_pfits.c,v 1.13 2011-10-24 13:08:33 cgarcia Exp $
2  *
3  * This file is part of the FORS Library
4  * Copyright (C) 2002-2010 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /*
22  * $Author: cgarcia $
23  * $Date: 2011-10-24 13:08:33 $
24  * $Revision: 1.13 $
25  * $Name: not supported by cvs2svn $
26  */
27 
28 #ifdef HAVE_CONFIG_H
29 #include <config.h>
30 #endif
31 
32 #include <fors_pfits.h>
33 
42 const char *const FORS_PFITS_INSTRUME = "INSTRUME";
43 const char *const FORS_PFITS_EXPOSURE_TIME = "EXPTIME";
44 const char *const FORS_PFITS_AIRMASS_START = "ESO TEL AIRM START";
45 const char *const FORS_PFITS_AIRMASS_END = "ESO TEL AIRM END";
46 const char *const FORS_PFITS_FILTER_NAME = "ESO INS FILT1 NAME";
47 const char *const FORS_PFITS_OUTPUTS = "ESO DET OUTPUTS";
48 const char *const FORS_PFITS_CONAD[4] = {"ESO DET OUT1 CONAD",
49  "ESO DET OUT2 CONAD",
50  "ESO DET OUT3 CONAD",
51  "ESO DET OUT4 CONAD"};
52 const char *const FORS_PFITS_RON[4] = {"ESO DET OUT1 RON",
53  "ESO DET OUT2 RON",
54  "ESO DET OUT3 RON",
55  "ESO DET OUT4 RON"};
56 const char *const FORS_PFITS_OVERSCANX = "ESO DET OUT1 OVSCX";
57 const char *const FORS_PFITS_OVERSCANY = "ESO DET OUT1 OVSCY";
58 const char *const FORS_PFITS_PRESCANX = "ESO DET OUT1 PRSCX";
59 const char *const FORS_PFITS_PRESCANY = "ESO DET OUT1 PRSCY";
60 const char *const FORS_PFITS_CRPIX1 = "CRPIX1";
61 const char *const FORS_PFITS_CRPIX2 = "CRPIX2";
62 const char *const FORS_PFITS_DET_NX = "ESO DET OUT1 NX";
63 const char *const FORS_PFITS_DET_NY = "ESO DET OUT1 NY";
64 const char *const FORS_PFITS_BINX = "ESO DET WIN1 BINX";
65 const char *const FORS_PFITS_BINY = "ESO DET WIN1 BINY";
66 const char *const FORS_PFITS_PIXSCALE = "ESO INS PIXSCALE";
67 const char *const FORS_PFITS_READ_CLOCK = "ESO DET READ CLOCK";
68 const char *const FORS_PFITS_CHIP_ID = "ESO DET CHIP1 ID";
69 const char *const FORS_PFITS_TARG_NAME = "ESO OBS TARG NAME";
70 
71