UVES Pipeline Reference Manual  5.4.0
uves_chip_type.c
1 /* *
2  * This file is part of the ESO UVES Pipeline *
3  * Copyright (C) 2004,2005 European Southern Observatory *
4  * *
5  * This library is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the Free Software *
17  * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA *
18  * */
19 
20 /*
21  * $Author: amodigli $
22  * $Date: 2010-09-24 09:32:02 $
23  * $Revision: 1.4 $
24  * $Name: not supported by cvs2svn $
25  * $Log: not supported by cvs2svn $
26  * Revision 1.2 2007/08/30 07:56:54 amodigli
27  * fixed some doxygen warnings
28  *
29  * Revision 1.1 2007/01/18 07:43:22 jmlarsen
30  * Add chip type
31  *
32  */
33 
34 #ifdef HAVE_CONFIG_H
35 # include <config.h>
36 #endif
37 
38 /*----------------------------------------------------------------------------*/
42 /*----------------------------------------------------------------------------*/
43 
44 /*-----------------------------------------------------------------------------
45  Includes
46  -----------------------------------------------------------------------------*/
47 
48 #include <uves_chip_type.h>
49 
50 /*-----------------------------------------------------------------------------
51  Type definitions
52  -----------------------------------------------------------------------------*/
53 
54 struct _uves_chip
55 {
56  char whatever;
57 };
58 
59 
60 /*-----------------------------------------------------------------------------
61  Implementation
62  -----------------------------------------------------------------------------*/
63 static struct _uves_chip blue;
64 static struct _uves_chip redl;
65 static struct _uves_chip redu;
66 static struct _uves_chip invalid;
67 
68 const uves_chip UVES_CHIP_BLUE = &blue;
69 const uves_chip UVES_CHIP_REDL = &redl;
70 const uves_chip UVES_CHIP_REDU = &redu;
71 const uves_chip UVES_CHIP_INVALID = &invalid;