diff --git a/python/lsst/meas/algorithms/dynamicDetection.py b/python/lsst/meas/algorithms/dynamicDetection.py index 158f0ef8..c707e60c 100644 --- a/python/lsst/meas/algorithms/dynamicDetection.py +++ b/python/lsst/meas/algorithms/dynamicDetection.py @@ -105,7 +105,10 @@ def __init__(self, *args, **kwargs): # Set up forced measurement. config = ForcedMeasurementTask.ConfigClass() - config.plugins.names = ['base_TransformedCentroid', 'base_PsfFlux', 'base_LocalBackground'] + config.plugins.names = ['base_TransformedCentroid', + 'base_PsfFlux', + 'base_LocalBackground', + 'base_PixelFlags'] # We'll need the "centroid" and "psfFlux" slots for slot in ("shape", "psfShape", "apFlux", "modelFlux", "gaussianFlux", "calibFlux"): setattr(config.slots, slot, None)