-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetis_recipes.py
70 lines (65 loc) · 3.01 KB
/
metis_recipes.py
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
"""
This file is part of the METIS Pipeline.
Copyright (C) 2024 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, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""
from pymetis.recipes.metis_det_lingain import MetisDetLinGain
from pymetis.recipes.metis_det_dark import MetisDetDark
from pymetis.recipes.lm_img.metis_lm_img_basic_reduce import MetisLmImgBasicReduce
from pymetis.recipes.lm_img.metis_lm_img_flat import MetisLmImgFlat
from pymetis.recipes.lm_img.metis_lm_img_background import MetisLmImgBackground
from pymetis.recipes.lm_img.metis_lm_img_std_process import MetisLmImgStdProcess
from pymetis.recipes.lm_img.metis_lm_img_distortion import MetisLmImgDistortion
from pymetis.recipes.lm_img.metis_lm_img_calibrate import MetisLmImgCalibrate
from pymetis.recipes.lm_img.metis_lm_img_sci_postprocess import MetisLmImgSciPostProcess
from pymetis.recipes.n_img.metis_n_img_flat import MetisNImgFlat
from pymetis.recipes.n_img.metis_n_img_calibrate import MetisNImgCalibrate
from pymetis.recipes.n_img.metis_n_img_distortion import MetisNImgDistortion
from pymetis.recipes.n_img.metis_n_img_chopnod import MetisNImgChopnod
from pymetis.recipes.n_img.metis_n_img_std_process import MetisNImgStdProcess
from pymetis.recipes.n_img.metis_n_img_restore import MetisNImgRestore
from pymetis.recipes.ifu.metis_ifu_distortion import MetisIfuDistortion
from pymetis.recipes.ifu.metis_ifu_calibrate import MetisIfuCalibrate
from pymetis.recipes.ifu.metis_ifu_postprocess import MetisIfuPostprocess
from pymetis.recipes.ifu.metis_ifu_reduce import MetisIfuReduce
from pymetis.recipes.ifu.metis_ifu_rsrf import MetisIfuRsrf
from pymetis.recipes.ifu.metis_ifu_telluric import MetisIfuTelluric
from pymetis.recipes.ifu.metis_ifu_wavecal import MetisIfuWavecal
from pymetis.recipes.cal.metis_cal_chophome import MetisCalChophome
from pymetis.recipes.instrument.metis_pupil_imaging import MetisPupilImaging
__all__ = [
MetisDetLinGain,
MetisDetDark,
MetisLmImgBasicReduce,
MetisLmImgBackground,
MetisLmImgStdProcess,
MetisLmImgFlat,
MetisLmImgDistortion,
MetisLmImgCalibrate,
MetisLmImgSciPostProcess,
MetisNImgFlat,
MetisNImgCalibrate,
MetisNImgDistortion,
MetisNImgChopnod,
MetisNImgStdProcess,
MetisNImgRestore,
MetisIfuDistortion,
MetisIfuCalibrate,
MetisIfuPostprocess,
MetisIfuRsrf,
MetisIfuReduce,
MetisIfuTelluric,
MetisIfuWavecal,
MetisCalChophome,
MetisPupilImaging,
]