diff --git a/python/lsst/ip/diffim/detectAndMeasure.py b/python/lsst/ip/diffim/detectAndMeasure.py index 233e3fe5..22a65d2f 100644 --- a/python/lsst/ip/diffim/detectAndMeasure.py +++ b/python/lsst/ip/diffim/detectAndMeasure.py @@ -199,8 +199,6 @@ def setDefaults(self): self.detection.thresholdType = "pixel_stdev" self.detection.excludeMaskPlanes = ["EDGE", "SAT", "BAD", "INTRP"] - # Add filtered flux measurement, the correct measurement for pre-convolved images. - self.measurement.algorithms.names.add("base_PeakLikelihoodFlux") self.measurement.plugins.names |= ["ext_trailedSources_Naive", "base_LocalPhotoCalib", "base_LocalWcs", diff --git a/python/lsst/ip/diffim/dipoleFitTask.py b/python/lsst/ip/diffim/dipoleFitTask.py index 525ee741..cf92cc12 100644 --- a/python/lsst/ip/diffim/dipoleFitTask.py +++ b/python/lsst/ip/diffim/dipoleFitTask.py @@ -109,8 +109,6 @@ def setDefaults(self): "base_PixelFlags", "base_SkyCoord", "base_PsfFlux", - "base_SdssShape", - "base_GaussianFlux", ] # Only measure the apertures we need to report in the alert stream. self.plugins["base_CircularApertureFlux"].radii = [12.0] @@ -118,7 +116,7 @@ def setDefaults(self): self.slots.calibFlux = None self.slots.modelFlux = None self.slots.gaussianFlux = None - self.slots.shape = "base_SdssShape" + self.slots.shape = None # This will be switched to "ip_diffim_DipoleFit" as this task runs. self.slots.centroid = "base_SdssCentroid" self.doReplaceWithNoise = False