File: flames.h

package info (click to toggle)
cpl-plugin-uves 5.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 18,540 kB
  • sloc: ansic: 131,051; sh: 4,274; python: 2,925; makefile: 989
file content (99 lines) | stat: -rw-r--r-- 3,405 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * This file is part of the ESO UVES Pipeline
 * Copyright (C) 2004,2005 European Southern Observatory
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, 51 Franklin St, Fifth Floor, Boston, MA  02111-1307  USA
 */

#ifndef FLAMES_H
#define FLAMES_H

#include <cpl.h>
#include <stdint.h>
/*-----------------------------------------------------------------------------
                                   Defines
 ----------------------------------------------------------------------------*/
#define FLAMES_DEBUG 0

#define FLAMES_CAL_ORDERPOS_ID flames_cal_orderpos
#define FLAMES_CAL_ORDERPOS_DOM "OrderPos"

#define FLAMES_MKMASTER_ID flames_cal_mkmaster
#define FLAMES_MKMASTER_DOM "mkmaster"

#define FLAMES_CAL_PREP_SFF_OFPOS_ID flames_cal_prep_sff_ofpos
#define FLAMES_CAL_PREP_SFF_OFPOS_DOM "OFPos"

#define FLAMES_CAL_PREDICT_ID flames_cal_predict
#define FLAMES_CAL_PREDICT_DOM "Predict"

#define FLAMES_CAL_WAVECAL_ID flames_cal_wavecal
#define FLAMES_CAL_WAVECAL_DOM "Wavecal"

#define FLAMES_OBS_SCIRED_ID flames_obs_scired
#define FLAMES_OBS_SCIRED_DOM "SciRed"

#define FLAMES_OBS_REDCHAIN_ID flames_obs_redchain
#define FLAMES_OBS_REDCHAIN_DOM "RedChain"

#define FLAMES_EXTRACT_ID flames_extract
#define FLAMES_EXTRACT_DOM "extract"

#define FLAMES_FILLORDTAB_ID flames_fillordtab
#define FLAMES_FILLORDTAB_DOM "fillordtab"

#define FLAMES_MES_SLITFF_SIZE_ID flames_mes_slitff_size
#define FLAMES_MES_SLITFF_SIZE_DOM "mes_slitff_size"

#define FLAMES_PREPBKG_ID flames_prepbkg
#define FLAMES_PREPBKG_DOM "prepbkg"

#define FLAMES_PREPFIBREFF_ID flames_prepfibreff
#define FLAMES_PREPFIBREFF_DOM "prepfibreff"

#define FLAMES_PREPNORM_ID flames_prepnorm
#define FLAMES_PREPNORM_DOM "prepnorm"

#define FLAMES_PREPPA_ID flames_preppa
#define FLAMES_PREPPA_DOM "preppa"


#define FLAMES_PREPSLITFF_ID flames_prepslitff
#define FLAMES_PREPSLITFF_DOM "prepslitff"

#define FLAMES_UTL_UNPACK_ID flames_utl_unpack
#define FLAMES_UTL_UNPACK_DOM "unpack"


int flames_utl_unpack_get_info(cpl_pluginlist *);
int flames_cal_orderpos_get_info(cpl_pluginlist *);
int flames_cal_predict_get_info(cpl_pluginlist *);
int flames_cal_prep_sff_ofpos_get_info(cpl_pluginlist *);
int flames_cal_wavecal_get_info(cpl_pluginlist *);
int flames_cal_mkmaster_get_info(cpl_pluginlist *);
int flames_obs_scired_get_info(cpl_pluginlist *);
int flames_obs_redchain_get_info(cpl_pluginlist *);

int flames_extract_get_info(cpl_pluginlist *);
int flames_fillordtab_get_info(cpl_pluginlist *);
int flames_mes_slitff_size_get_info(cpl_pluginlist *);
int flames_prepbkg_get_info(cpl_pluginlist *);
int flames_prepfibreff_get_info(cpl_pluginlist *);
int flames_prepnorm_get_info(cpl_pluginlist *);
int flames_preppa_get_info(cpl_pluginlist *);
int flames_prepslitff_get_info(cpl_pluginlist *);
#endif /* FLAMES_H */