IIINSTRUMENT Pipeline Reference Manual  1.5.13
sofi_dfs.h
1 /* $Id: sofi_dfs.h,v 1.14 2013-03-12 08:04:54 llundin Exp $
2  *
3  * This file is part of the SOFI Pipeline
4  * Copyright (C) 2002,2003 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 02111-1307 USA
19  */
20 
21 /*
22  * $Author: llundin $
23  * $Date: 2013-03-12 08:04:54 $
24  * $Revision: 1.14 $
25  * $Name: not supported by cvs2svn $
26  */
27 
28 #ifndef SOFI_DFS_H
29 #define SOFI_DFS_H
30 
31 /*-----------------------------------------------------------------------------
32  Define
33  -----------------------------------------------------------------------------*/
34 
35 /* Column names */
36 #define SOFI_COL_WAVELENGTH "Wavelength"
37 #define SOFI_COL_EMISSION "Emission"
38 
39 /* Define here the PRO.CATG keywords */
40 #define SOFI_IMG_DOMEFLAT_RES "MASTER_IMG_FLAT"
41 #define SOFI_IMG_ZPOINT_TAB "ZPOINT_TAB"
42 #define SOFI_IMG_ZPOINT_CHECK "ZPOINT_CHECK_IMG"
43 #define SOFI_IMG_DARK_AVG "MASTER_DARK"
44 #define SOFI_IMG_JITTER_COMB "COADDED_IMG"
45 #define SOFI_IMG_JITTER_STARS "STARS_TAB"
46 #define SOFI_IMG_JITTER_BG "SKY_TAB"
47 #define SOFI_IMG_ILLUM_RES "ILLUM_FRAME"
48 #define SOFI_IMG_ILLUM_TAB "ILLUM_FLUX"
49 #define SOFI_IMG_DETLIN_A "DETLIN_A"
50 #define SOFI_IMG_DETLIN_B "DETLIN_B"
51 #define SOFI_IMG_DETLIN_C "DETLIN_C"
52 #define SOFI_IMG_DETLIN_Q "DETLIN_Q"
53 #define SOFI_SPC_FLAT_RES "MASTER_SP_FLAT"
54 #define SOFI_SPC_ARC_RES "ARC_COEF"
55 #define SOFI_SPC_ARC_CORR "ARC_CORRECT"
56 #define SOFI_SPC_JITTER_COMB "OBS_COMBINED"
57 #define SOFI_SPC_JITTER_EXTR "OBS_EXTRACTED"
58 #define SOFI_UTIL_STDSTARS_RES "STDSTARS_CATS"
59 #define SOFI_UTIL_GENLINES_OH_CAT "CALPRO_OH_CATALOG"
60 #define SOFI_UTIL_GENLINES_XE_CAT "CALPRO_XE_CATALOG"
61 #define SOFI_UTIL_GENLINES_NE_CAT "CALPRO_NE_CATALOG"
62 
63 /* Define here the DO.CATG keywords */
64 #define SOFI_CALPRO_OH_CAT "CALPRO_OH_CATALOG"
65 #define SOFI_CALPRO_XE_CAT "CALPRO_XE_CATALOG"
66 #define SOFI_CALPRO_NE_CAT "CALPRO_NE_CATALOG"
67 #define SOFI_CALIB_STDSTARS "STDSTARS_CATS"
68 #define SOFI_CALIB_FLAT "MASTER_IMG_FLAT"
69 #define SOFI_CALIB_DARK "MASTER_DARK"
70 #define SOFI_CALIB_SPFLAT "MASTER_SP_FLAT"
71 #define SOFI_CALIB_ARC "ARC_COEF"
72 #define SOFI_CALIB_DETLIN_A "DETLIN_A"
73 #define SOFI_CALIB_DETLIN_B "DETLIN_B"
74 #define SOFI_CALIB_DETLIN_C "DETLIN_C"
75 
76 #define SOFI_IMG_ZPOINT_RAW "IM_ZPOINT"
77 #define SOFI_IMG_DOMEFLAT_RAW "IM_FLAT"
78 #define SOFI_IMG_DARK_RAW "IM_DARK"
79 #define SOFI_IMG_JITTER_OBJ_RAW "IM_JITTEROBJ"
80 #define SOFI_IMG_JITTER_SKY_RAW "IM_JITTERSKY"
81 #define SOFI_IMG_ILLUM_RAW "IM_ILLUM"
82 #define SOFI_IMG_DETLIN_LAMP_RAW "LINEAR_LAMP"
83 #define SOFI_IMG_DETLIN_DARK_RAW "LINEAR_DARK"
84 #define SOFI_SPC_FLAT_RAW "SP_FLAT"
85 #define SOFI_SPC_ARC_RAW "SP_ARC"
86 #define SOFI_SPC_JITTER_NODOBJ_RAW "SP_NODDINGOBJ"
87 #define SOFI_SPC_JITTER_NODSKY_RAW "SP_NODDINGSKY"
88 #define SOFI_UTIL_STDSTARS_RAW "STDSTAR_CAT"
89 #define SOFI_UTIL_GENLINES_RAW "CATALOG"
90 
91 /*-----------------------------------------------------------------------------
92  Functions prototypes
93  -----------------------------------------------------------------------------*/
94 
95 int sofi_dfs_set_groups(cpl_frameset *) ;
96 
97 #endif
sofi_dfs_set_groups
int sofi_dfs_set_groups(cpl_frameset *)
Set the group as RAW or CALIB in a frameset.
Definition: sofi_dfs.c:60