Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-24704: Make brighter-fatter correction a subclass of lsst.ip.isr.IsrCalib #490

Merged
merged 1 commit into from
Apr 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/configs/datastores/formatters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ QECurve: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
CrosstalkCalib: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
PhotonTransferCurveDataset: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
Linearizer: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
BrighterFatterKernel: lsst.obs.base.formatters.fitsGeneric.FitsGenericFormatter
Image: lsst.obs.base.formatters.fitsExposure.FitsImageFormatter
ImageF: lsst.obs.base.formatters.fitsExposure.FitsImageFormatter
ImageU: lsst.obs.base.formatters.fitsExposure.FitsImageFormatter
Expand Down Expand Up @@ -62,7 +63,6 @@ MetricValue:
formatter: lsst.daf.butler.formatters.yaml.YamlFormatter
parameters:
unsafe_dump: true
BrighterFatterKernel: lsst.daf.butler.formatters.pickle.PickleFormatter
StructuredDataDict: lsst.daf.butler.formatters.yaml.YamlFormatter
# TODO: remove Filter in DM-27177
Filter: lsst.obs.base.formatters.filter.FilterFormatter
Expand Down
8 changes: 4 additions & 4 deletions python/lsst/daf/butler/configs/storageClasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ storageClasses:
pytype: lsst.ip.isr.Linearizer
PhotonTransferCurveDataset:
pytype: lsst.ip.isr.PhotonTransferCurveDataset
StrayLightData:
pytype: lsst.ip.isr.StrayLightData
BrighterFatterKernel:
pytype: lsst.ip.isr.BrighterFatterKernel
# TODO: remove Filter in DM-27177
Filter:
pytype: lsst.afw.image.Filter
Expand Down Expand Up @@ -174,10 +178,6 @@ storageClasses:
pytype: lsst.base.Packages
NumpyArray:
pytype: numpy.ndarray
StrayLightData:
pytype: lsst.ip.isr.StrayLightData
BrighterFatterKernel:
pytype: lsst.cp.pipe.makeBrighterFatterKernel.BrighterFatterKernel
Thumbnail:
pytype: numpy.ndarray
Plot:
Expand Down