Skip to content

Commit

Permalink
Do multiband streak pixelflag correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
mrawls committed Oct 25, 2023
1 parent 24d3ab6 commit 8487abb
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8487abb

Please sign in to comment.