00001 /* $Id: fors_pfits.c,v 1.12 2010/09/14 07:49:30 cizzo Exp $ 00002 * 00003 * This file is part of the FORS Library 00004 * Copyright (C) 2002-2010 European Southern Observatory 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00019 */ 00020 00021 /* 00022 * $Author: cizzo $ 00023 * $Date: 2010/09/14 07:49:30 $ 00024 * $Revision: 1.12 $ 00025 * $Name: fors-4_8_6 $ 00026 */ 00027 00028 #ifdef HAVE_CONFIG_H 00029 #include <config.h> 00030 #endif 00031 00032 #include <fors_pfits.h> 00033 00042 const char *const FORS_PFITS_INSTRUME = "INSTRUME"; 00043 const char *const FORS_PFITS_EXPOSURE_TIME = "EXPTIME"; 00044 const char *const FORS_PFITS_AIRMASS_START = "ESO TEL AIRM START"; 00045 const char *const FORS_PFITS_AIRMASS_END = "ESO TEL AIRM END"; 00046 const char *const FORS_PFITS_FILTER_NAME = "ESO INS FILT1 NAME"; 00047 const char *const FORS_PFITS_OUTPUTS = "ESO DET OUTPUTS"; 00048 const char *const FORS_PFITS_CONAD[4] = {"ESO DET OUT1 CONAD", 00049 "ESO DET OUT2 CONAD", 00050 "ESO DET OUT3 CONAD", 00051 "ESO DET OUT4 CONAD"}; 00052 const char *const FORS_PFITS_RON[4] = {"ESO DET OUT1 RON", 00053 "ESO DET OUT2 RON", 00054 "ESO DET OUT3 RON", 00055 "ESO DET OUT4 RON"}; 00056 const char *const FORS_PFITS_OVERSCANX = "ESO DET OUT1 OVSCX"; 00057 const char *const FORS_PFITS_OVERSCANY = "ESO DET OUT1 OVSCY"; 00058 const char *const FORS_PFITS_PRESCANX = "ESO DET OUT1 PRSCX"; 00059 const char *const FORS_PFITS_PRESCANY = "ESO DET OUT1 PRSCY"; 00060 const char *const FORS_PFITS_CRPIX1 = "CRPIX1"; 00061 const char *const FORS_PFITS_CRPIX2 = "CRPIX2"; 00062 const char *const FORS_PFITS_DET_NX = "ESO DET OUT1 NX"; 00063 const char *const FORS_PFITS_DET_NY = "ESO DET OUT1 NY"; 00064 const char *const FORS_PFITS_BINX = "ESO DET WIN1 BINX"; 00065 const char *const FORS_PFITS_BINY = "ESO DET WIN1 BINY"; 00066 const char *const FORS_PFITS_PIXSCALE = "ESO INS PIXSCALE"; 00067 const char *const FORS_PFITS_READ_CLOCK = "ESO DET READ CLOCK"; 00068 const char *const FORS_PFITS_CHIP_ID = "ESO DET CHIP1 ID"; 00069 00070