ConsolidateFinalizeCharacterizationDetectorTask#

class lsst.pipe.tasks.finalizeCharacterization.ConsolidateFinalizeCharacterizationDetectorTask(*, config: PipelineTaskConfig | None = None, log: logging.Logger | LsstLogAdapter | None = None, initInputs: dict[str, Any] | None = None, **kwargs: Any)#

Bases: PipelineTask

Consolidate per-detector finalize characterization catalogs.

Methods Summary

run(*, psf_ap_corr_detector_dict, ...)

Run the ConsolidateFinalizeCharacterizationDetectorTask.

runQuantum(butlerQC, inputRefs, outputRefs)

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

Methods Documentation

run(*, psf_ap_corr_detector_dict, src_detector_table_dict)#

Run the ConsolidateFinalizeCharacterizationDetectorTask.

Parameters#

psf_ap_corr_detector_dictdict [int, lsst.daf.butler.DeferredDatasetHandle]

Dictionary of input exposure catalogs, keyed by detector id.

src_detector_table_dictdict [int, lsst.daf.butler.DeferredDatasetHandle]

Dictionary of input source tables, keyed by detector id.

Returns#

resultlsst.pipe.base.struct

Struct with the following outputs: psf_ap_corr_cat: Consolidated exposure catalog src_table: Consolidated source table.

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.