Skip to content

Commit

Permalink
Fix regression in MeasureMergedCoaddSources
Browse files Browse the repository at this point in the history
  • Loading branch information
natelust committed Jan 30, 2019
1 parent 22da474 commit e7df672
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -977,8 +977,13 @@ def runDataRef(self, patchRef, psfCache=100):
table.setMetadata(self.algMetadata) # Capture algorithm metadata to write out to the source catalog.
skyInfo = getSkyInfo(coaddName=self.config.coaddName, patchRef=patchRef)

if self.config.doPropagateFlags:
ccdInputs = self.propagateFlags.getCcdInputs(exposure)
else:
ccdInputs = None

results = self.run(exposure=exposure, sources=sources,
ccdInputs=self.propagateFlags.getCcdInputs(exposure),
ccdInputs=ccdInputs,
skyInfo=skyInfo, butler=patchRef.getButler(),
exposureId=self.getExposureId(patchRef))

Expand Down

0 comments on commit e7df672

Please sign in to comment.