diff --git a/python/lsst/pipe/tasks/multiBand.py b/python/lsst/pipe/tasks/multiBand.py index c28a26018..f0c1d99dc 100644 --- a/python/lsst/pipe/tasks/multiBand.py +++ b/python/lsst/pipe/tasks/multiBand.py @@ -448,12 +448,9 @@ def setDefaults(self): 'base_LocalPhotoCalib', 'base_LocalWcs'] self.measurement.plugins['base_PixelFlags'].masksFpAnywhere = ['CLIPPED', 'SENSOR_EDGE', - 'INEXACT_PSF'] + 'INEXACT_PSF', 'STREAK'] self.measurement.plugins['base_PixelFlags'].masksFpCenter = ['CLIPPED', 'SENSOR_EDGE', - 'INEXACT_PSF'] - # Keep track of which footprints contain streaks - self.measurement.plugins['base_PixelFlags'].masksFpAnywhere = ['STREAK'] - self.measurement.plugins['base_PixelFlags'].masksFpCenter = ['STREAK'] + 'INEXACT_PSF', 'STREAK'] class MeasureMergedCoaddSourcesTask(PipelineTask):