00001 /* * 00002 * This file is part of the ESO UVES Pipeline * 00003 * Copyright (C) 2004,2005 European Southern Observatory * 00004 * * 00005 * This library is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the Free Software * 00017 * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA * 00018 * */ 00019 00020 /* 00021 * $Author: amodigli $ 00022 * $Date: 2010/09/24 09:32:02 $ 00023 * $Revision: 1.4 $ 00024 * $Name: uves-4_9_1 $ 00025 * $Log: uves_chip_type.c,v $ 00026 * Revision 1.4 2010/09/24 09:32:02 amodigli 00027 * put back QFITS dependency to fix problem spot by NRI on FIBER mode (with MIDAS calibs) data 00028 * 00029 * Revision 1.2 2007/08/30 07:56:54 amodigli 00030 * fixed some doxygen warnings 00031 * 00032 * Revision 1.1 2007/01/18 07:43:22 jmlarsen 00033 * Add chip type 00034 * 00035 */ 00036 00037 #ifdef HAVE_CONFIG_H 00038 # include <config.h> 00039 #endif 00040 00041 /*----------------------------------------------------------------------------*/ 00045 /*----------------------------------------------------------------------------*/ 00046 00047 /*----------------------------------------------------------------------------- 00048 Includes 00049 -----------------------------------------------------------------------------*/ 00050 00051 #include <uves_chip_type.h> 00052 00053 /*----------------------------------------------------------------------------- 00054 Type definitions 00055 -----------------------------------------------------------------------------*/ 00056 00057 struct _uves_chip 00058 { 00059 char whatever; 00060 }; 00061 00062 00063 /*----------------------------------------------------------------------------- 00064 Implementation 00065 -----------------------------------------------------------------------------*/ 00066 static struct _uves_chip blue; 00067 static struct _uves_chip redl; 00068 static struct _uves_chip redu; 00069 static struct _uves_chip invalid; 00070 00071 const uves_chip UVES_CHIP_BLUE = &blue; 00072 const uves_chip UVES_CHIP_REDL = &redl; 00073 const uves_chip UVES_CHIP_REDU = &redu; 00074 const uves_chip UVES_CHIP_INVALID = &invalid;