Skip to content

Commit

Permalink
fix file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kbwestfall committed Aug 12, 2024
1 parent 7f59d94 commit 23d471a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions pypeit/spectrographs/gemini_gnirs.py
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ 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
2 changes: 2 additions & 0 deletions pypeit/spectrographs/mdm_modspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class MDMModspecEchelleSpectrograph(spectrograph.Spectrograph):
supported = True
comment = 'MDM Modspec spectrometer; Only 1200l/mm disperser (so far)'

allowed_extensions = ['.fit']

def get_detector_par(self, det, hdu=None):
"""
Return metadata for the selected detector.
Expand Down
1 change: 1 addition & 0 deletions pypeit/spectrographs/wht_isis.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class WHTISISBlueSpectrograph(WHTISISSpectrograph):
name = 'wht_isis_blue'
camera = 'ISISb'
comment = 'Blue camera'
allowed_extensions = ['.fit.gz']

def get_detector_par(self, det, hdu=None):
"""
Expand Down

0 comments on commit 23d471a

Please sign in to comment.