Skip to content

Commit

Permalink
Merge pull request #216 from lsst/tickets/DM-35322
Browse files Browse the repository at this point in the history
DM-35322: Add local calibs to CCD forced photometry.
  • Loading branch information
ctslater committed Jul 17, 2022
2 parents 1182afd + d5ee76c commit 0c698cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/lsst/meas/base/forcedPhotCcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,9 @@ def setDefaults(self):
super().setDefaults()
self.footprintSource = "psf"
self.measurement.doReplaceWithNoise = False
self.measurement.plugins = ["base_TransformedCentroidFromCoord", "base_PsfFlux", "base_PixelFlags"]
self.measurement.plugins.names = ["base_LocalPhotoCalib", "base_LocalWcs", "base_LocalBackground",
"base_TransformedCentroidFromCoord", "base_PsfFlux",
"base_PixelFlags"]
self.measurement.copyColumns = {'id': 'diaObjectId', 'coord_ra': 'coord_ra', 'coord_dec': 'coord_dec'}
self.measurement.slots.centroid = "base_TransformedCentroidFromCoord"
self.measurement.slots.psfFlux = "base_PsfFlux"
Expand Down

0 comments on commit 0c698cb

Please sign in to comment.