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: 2007/08/30 07:56:54 $ 00023 * $Revision: 1.2 $ 00024 * $Name: uves-4_2_2 $ 00025 * $Log: uves_chip_type.c,v $ 00026 * Revision 1.2 2007/08/30 07:56:54 amodigli 00027 * fixed some doxygen warnings 00028 * 00029 * Revision 1.1 2007/01/18 07:43:22 jmlarsen 00030 * Add chip type 00031 * 00032 */ 00033 00034 #ifdef HAVE_CONFIG_H 00035 # include <config.h> 00036 #endif 00037 00038 /*----------------------------------------------------------------------------*/ 00042 /*----------------------------------------------------------------------------*/ 00043 00044 /*----------------------------------------------------------------------------- 00045 Includes 00046 -----------------------------------------------------------------------------*/ 00047 00048 #include <uves_chip_type.h> 00049 00050 /*----------------------------------------------------------------------------- 00051 Type definitions 00052 -----------------------------------------------------------------------------*/ 00053 00054 struct _uves_chip 00055 { 00056 char whatever; 00057 }; 00058 00059 00060 /*----------------------------------------------------------------------------- 00061 Implementation 00062 -----------------------------------------------------------------------------*/ 00063 static struct _uves_chip blue; 00064 static struct _uves_chip redl; 00065 static struct _uves_chip redu; 00066 static struct _uves_chip invalid; 00067 00068 const uves_chip UVES_CHIP_BLUE = &blue; 00069 const uves_chip UVES_CHIP_REDL = &redl; 00070 const uves_chip UVES_CHIP_REDU = &redu; 00071 const uves_chip UVES_CHIP_INVALID = &invalid;
1.5.1