MeasureMergedCoaddSourcesTask#
- class lsst.pipe.tasks.multiBand.MeasureMergedCoaddSourcesTask(schema=None, peakSchema=None, refObjLoader=None, initInputs=None, **kwargs)#
Bases:
PipelineTaskDeblend sources from main catalog in each coadd seperately and measure.
Use peaks and footprints from a master catalog to perform deblending and measurement in each coadd.
Given a master input catalog of sources (peaks and footprints) or deblender outputs(including a HeavyFootprint in each band), measure each source on the coadd. Repeating this procedure with the same master catalog across multiple coadds will generate a consistent set of child sources.
The deblender retains all peaks and deblends any missing peaks (dropouts in that band) as PSFs. Source properties are measured and the @c is-primary flag (indicating sources with no children) is set. Visit flags are propagated to the coadd sources.
Optionally, we can match the coadd sources to an external reference catalog.
After MeasureMergedCoaddSourcesTask has been run on multiple coadds, we have a set of per-band catalogs. The next stage in the multi-band processing procedure will merge these measurements into a suitable catalog for driving forced photometry.
Parameters#
- schema``lsst.afw.table.Schema`, optional
The schema of the merged detection catalog used as input to this one.
- peakSchema``lsst.afw.table.Schema`, optional
The schema of the PeakRecords in the Footprints in the merged detection catalog.
- refObjLoader
lsst.meas.algorithms.ReferenceObjectLoader, optional An instance of ReferenceObjectLoader that supplies an external reference catalog. May be None if the loader can be constructed from the butler argument or all steps requiring a reference catalog are disabled.
- initInputs
dict, optional Dictionary that can contain a key
inputSchemacontaining the input schema. If present will override the value ofschema.- **kwargs
Additional keyword arguments.
Methods Summary
run(exposure, sources, skyInfo, exposureId)Run measurement algorithms on the input exposure, and optionally populate the resulting catalog with extra information.
runQuantum(butlerQC, inputRefs, outputRefs)Do butler IO and transform to provide in memory objects for tasks
runmethod.Methods Documentation
- run(exposure, sources, skyInfo, exposureId, ccdInputs=None, sourceTableHandleDict=None, finalizedSourceTableHandleDict=None, finalVisitSummaryHandleDict=None, apCorrMap=None)#
Run measurement algorithms on the input exposure, and optionally populate the resulting catalog with extra information.
Parameters#
- exposure
lsst.afw.exposure.Exposure The input exposure on which measurements are to be performed.
- sources
lsst.afw.table.SourceCatalog A catalog built from the results of merged detections, or deblender outputs.
- parentCatalog
lsst.afw.table.SourceCatalog Catalog of parent sources corresponding to sources.
- skyInfo
lsst.pipe.base.Struct A struct containing information about the position of the input exposure within a
SkyMap, theSkyMap, itsWcs, and its bounding box.- exposureId
intorbytes Packed unique number or bytes unique to the input exposure.
- ccdInputs
lsst.afw.table.ExposureCatalog, optional Catalog containing information on the individual visits which went into making the coadd.
- sourceTableHandleDict
dict[int,lsst.daf.butler.DeferredDatasetHandle], optional Dict for sourceTable_visit handles (key is visit) for propagating flags. These tables contain astrometry and photometry flags, and optionally PSF flags.
- finalizedSourceTableHandleDict
dict[int,lsst.daf.butler.DeferredDatasetHandle], optional Dict for finalized_src_table handles (key is visit) for propagating flags. These tables contain PSF flags from the finalized PSF estimation.
- finalVisitSummaryHandleDict
dict[int,lsst.daf.butler.DeferredDatasetHandle], optional Dict for visit_summary handles (key is visit) for visit-level information. These tables contain the WCS information of the single-visit input images.
- apCorrMap
lsst.afw.image.ApCorrMap, optional Aperture correction map attached to the
exposure. If None, it will be read from theexposure.
Returns#
- results
lsst.pipe.base.Struct Results of running measurement task. Will contain the catalog in the sources attribute. Optionally will have results of matching to a reference catalog in the matchResults attribute, and denormalized matches in the denormMatches attribute.
- exposure
- runQuantum(butlerQC, inputRefs, outputRefs)#
Do butler IO and transform to provide in memory objects for tasks
runmethod.Parameters#
- butlerQC
QuantumContext A butler which is specialized to operate in the context of a
lsst.daf.butler.Quantum.- inputRefs
InputQuantizedConnection Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnectionsclass. The values of these attributes are thelsst.daf.butler.DatasetRefobjects associated with the defined input/prerequisite connections.- outputRefs
OutputQuantizedConnection Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnectionsclass. The values of these attributes are thelsst.daf.butler.DatasetRefobjects associated with the defined output connections.
- butlerQC