Skip to content

Commit

Permalink
Merge pull request #388 from lsst/tickets/DM-32298
Browse files Browse the repository at this point in the history
DM-32298: Fake that all ComCam data is on the mountain for now
  • Loading branch information
mfisherlevine committed Jan 25, 2022
2 parents 9993cab + 29f011b commit f656d25
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions python/lsst/obs/lsst/translators/comCam.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,19 @@ def fix_header(cls, header, instrument, obsid, filename=None):
modified = True

return modified

def _is_on_mountain(self):
"""Indicate whether these data are coming from the instrument
installed on the mountain.
Returns
-------
is : `bool`
`True` if instrument is on the mountain.
Notes
-----
TODO: DM-33387 This is currently a terrible hack and MUST be removed
once CAP-807 and CAP-808 are done.
Until then, ALL non-calib ComCam data will look like it is on sky.
"""
return True

0 comments on commit f656d25

Please sign in to comment.