Skip to content

Commit

Permalink
Add streak pixel flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mrawls committed Oct 25, 2023
1 parent ca62495 commit 865e9f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/lsst/drp/tasks/forcedPhotCoadd.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,11 @@ def setDefaults(self):
self.measurement.copyColumns["parent"] = "parent"
self.measurement.plugins.names |= ['base_InputCount', 'base_Variance']
self.measurement.plugins['base_PixelFlags'].masksFpAnywhere = ['CLIPPED', 'SENSOR_EDGE',
'REJECTED', 'INEXACT_PSF']
'REJECTED', 'INEXACT_PSF',
'STREAK']
self.measurement.plugins['base_PixelFlags'].masksFpCenter = ['CLIPPED', 'SENSOR_EDGE',
'REJECTED', 'INEXACT_PSF']
'REJECTED', 'INEXACT_PSF',
'STREAK']


class ForcedPhotCoaddTask(pipeBase.PipelineTask):
Expand Down

0 comments on commit 865e9f2

Please sign in to comment.