Skip to content

Commit

Permalink
update extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rcooke-ast committed Aug 16, 2024
1 parent f818bed commit 4c322b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pypeit/spectrographs/gemini_gmos.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ class GeminiGMOSSpectrograph(spectrograph.Spectrograph):
"""
ndet = 3
url = 'http://www.gemini.edu/instrumentation/gmos'
allowed_extensions = ['.fits', '.fits.bz2']

def __init__(self):
super().__init__()
Expand Down Expand Up @@ -1045,6 +1046,7 @@ class GeminiGMOSNSpectrograph(GeminiGMOSSpectrograph):
telescope = telescopes.GeminiNTelescopePar()
camera = 'GMOS-N'
header_name = 'GMOS-N'
allowed_extensions = ['.fits', '.fits.bz2']


class GeminiGMOSNHamSpectrograph(GeminiGMOSNSpectrograph):
Expand Down
2 changes: 1 addition & 1 deletion pypeit/spectrographs/gemini_gnirs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class GeminiGNIRSSpectrograph(spectrograph.Spectrograph):
url = 'https://www.gemini.edu/instrumentation/gnirs'
header_name = 'GNIRS'
telescope = telescopes.GeminiNTelescopePar()
allowed_extensions = ['.fits', '.fits.bz2']

def __init__(self):
super().__init__()
Expand Down Expand Up @@ -587,7 +588,6 @@ class GNIRSIFUSpectrograph(GeminiGNIRSSpectrograph):
# * Need to store a wavelength solution for different grating options (Note, the Holy Grail algorithm works pretty well, most of the time)
name = 'gemini_gnirs_ifu'
pypeline = 'SlicerIFU'
allowed_extensions = ['.fits', '.fits.bz2']

def init_meta(self):
super().init_meta()
Expand Down

0 comments on commit 4c322b8

Please sign in to comment.