Skip to content

Commit

Permalink
Merge branch 'tickets/DM-23371'
Browse files Browse the repository at this point in the history
  • Loading branch information
jdswinbank committed Apr 8, 2020
2 parents a8543ac + 412619b commit 6d6cf70
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions python/lsst/obs/lsstSim/lsstSimMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,6 @@ def getDataId(self, visit, ccdId):
dataId['sensor'] = m.group(1)
return dataId

def _extractAmpId(self, dataId):
m = re.match(r'(\d),(\d)', dataId['channel'])
# Note that indices are swapped in the camera geometry vs. official
# channel specification.
return (self._extractDetectorName(dataId),
int(m.group(1)), int(m.group(2)))

def _computeAmpExposureId(self, dataId):
# visit, snap, raft, sensor, channel):
"""Compute the 64-bit (long) identifier for an amp exposure.
Expand Down

0 comments on commit 6d6cf70

Please sign in to comment.