Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: meas_base
-
Labels:None
-
Story Points:0.1
-
Team:Data Release Production
Description
Yoshihiko Yamada noticed that we aren't including pixel flags in the forced measurements, but they are very useful there especially since the centroids may be different from the unforced measurements.
Attachments
Issue Links
- blocks
-
DM-10350 Next hscPipe 5.0 beta release
- Done
Jim Bosch, would have have a look at this please?
price@pap-laptop:~/LSST/meas_base (tickets/DM-10598=) $ git sub-patch
commit decbf94f503032499827af0411012765b88a4aa8
Author: Paul Price <price@astro.princeton.edu>
Date: Wed May 24 10:03:24 2017 -0400
forcedMeasurement: include pixel flags
These are important to include on the forced measurement because
the centroids can change from the unforced measurement.
diff --git a/python/lsst/meas/base/forcedMeasurement.py b/python/lsst/meas/base/forcedMeasurement.py
index c4500bc..36780a9 100644
--- a/python/lsst/meas/base/forcedMeasurement.py
+++ b/python/lsst/meas/base/forcedMeasurement.py
@@ -146,7 +146,8 @@ class ForcedMeasurementConfig(BaseMeasurementConfig):
plugins = ForcedPlugin.registry.makeField(
multi=True,
- default=["base_TransformedCentroid",
+ default=["base_PixelFlags",
+ "base_TransformedCentroid",
"base_TransformedShape",
"base_GaussianFlux",
"base_CircularApertureFlux",