Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/lsst/pipe/tasks/calibrateImage.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,6 @@ def run(
id_generator = lsst.meas.base.IdGenerator()

result.exposure = self.snap_combine.run(exposures).exposure
self._recordMaskedPixelFractions(result.exposure)
self.log.info("Initial PhotoCalib: %s", result.exposure.getPhotoCalib())

result.exposure.metadata["LSST CALIB ILLUMCORR APPLIED"] = False
Expand Down Expand Up @@ -1082,6 +1081,8 @@ def run(
else:
result.applied_photo_calib = None

self._recordMaskedPixelFractions(result.exposure)

if self.config.run_sattle:
# send boresight and timing information to sattle so the cache
# is populated by the time we reach ip_diffim detectAndMeasure.
Expand Down