Skip to content

Commit

Permalink
Remove STREAK from MeasureMergedCoaddSources
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Sep 17, 2024
1 parent 5c91486 commit 770ae2d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/lsst/pipe/tasks/multiBand.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,11 +449,13 @@ def setDefaults(self):
'base_LocalPhotoCalib',
'base_LocalWcs']

# TODO: Remove STREAK in DM-44658, streak masking to happen only in ip_diffim
# TODO: Remove STREAK in DM-44658, streak masking to happen only in
# ip_diffim; if we can propagate the streak mask from diffim, we can
# still set flags with it here.
self.measurement.plugins['base_PixelFlags'].masksFpAnywhere = ['CLIPPED', 'SENSOR_EDGE',
'INEXACT_PSF', 'STREAK']
'INEXACT_PSF']
self.measurement.plugins['base_PixelFlags'].masksFpCenter = ['CLIPPED', 'SENSOR_EDGE',
'INEXACT_PSF', 'STREAK']
'INEXACT_PSF']

def validate(self):
super().validate()
Expand Down

0 comments on commit 770ae2d

Please sign in to comment.