Skip to content

Commit

Permalink
multiband: rename deepCoadd_srcMatch as deepCoadd_measMatch
Browse files Browse the repository at this point in the history
The naming appears to be an error during the port of functionality
from HSC. Renamed in order to make clearer the relationship with the
deepCoadd_meas catalog.

Also renamed the related deepCoadd_srcMatchFull as
deepCoadd_measMatchFull.
  • Loading branch information
PaulPrice committed Mar 23, 2017
1 parent 148fcaf commit 7e20439
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,10 +1151,10 @@ def writeMatches(self, dataRef, exposure, sources):
if result.matches:
matches = afwTable.packMatches(result.matches)
matches.table.setMetadata(result.matchMeta)
dataRef.put(matches, self.config.coaddName + "Coadd_srcMatch")
dataRef.put(matches, self.config.coaddName + "Coadd_measMatch")
if self.config.doWriteMatchesDenormalized:
denormMatches = denormalizeMatches(result.matches, result.matchMeta)
dataRef.put(denormMatches, self.config.coaddName + "Coadd_srcMatchFull")
dataRef.put(denormMatches, self.config.coaddName + "Coadd_measMatchFull")


def write(self, dataRef, sources):
Expand Down

0 comments on commit 7e20439

Please sign in to comment.