DeblendCoaddSourcesMultiTask#

class lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiTask(initInputs, **kwargs)#

Bases: PipelineTask

Methods Summary

run(coadds, bands, mergedDetections, ...)

Deblend coadds from multiple bands together.

runQuantum(butlerQC, inputRefs, outputRefs)

Do butler IO and transform to provide in memory objects for tasks run method.

Methods Documentation

run(coadds, bands, mergedDetections, deconvolvedCoadds, idFactory)#

Deblend coadds from multiple bands together.

Parameters#

coaddslist [lsst.afw.image.Exposure | lsst.images.cells.CellCoadd]

Coadds to deblend.

bandslist [str]

Names or the bands for coadds (zip-iteration compatible).

mergedDetectionslsst.afw.table.SourceCatalog

Input catalog of detections, already merged across bands.

deconvolvedCoaddslist [lsst.afw.image.Exposure | lsst.images.MaskedImage]

Deconvolved versions of coadds (zip-iteration compatible).

idFactorylsst.afw.table.IdFactory

Factory used to generate output source IDs.

Returns#

structlsst.pipe.base.Struct

Unmodified outputs of the multibandDeblend subtask.

runQuantum(butlerQC, inputRefs, outputRefs)#

Do butler IO and transform to provide in memory objects for tasks run method.

Parameters#

butlerQCQuantumContext

A butler which is specialized to operate in the context of a lsst.daf.butler.Quantum.

inputRefsInputQuantizedConnection

Datastructure whose attribute names are the names that identify connections defined in corresponding PipelineTaskConnections class. The values of these attributes are the lsst.daf.butler.DatasetRef objects associated with the defined input/prerequisite connections.

outputRefsOutputQuantizedConnection

Datastructure whose attribute names are the names that identify connections defined in corresponding PipelineTaskConnections class. The values of these attributes are the lsst.daf.butler.DatasetRef objects associated with the defined output connections.