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.
Attributes Summary
Methods Summary
Empty (clear) the metadata for this Task and all sub-Tasks.
Get metadata for all tasks.
Get the task name as a hierarchical name including parent task names.
getName()Get the name of the task.
Get a dictionary of all tasks as a shallow copy.
makeField(doc)Make a
lsst.pex.config.ConfigurableFieldfor this task.makeSubtask(name, **keyArgs)Create a subtask as a new instance as the
nameattribute of this task.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.timer(name[, logLevel])Context manager to log performance data for an arbitrary block of code.
Attributes Documentation
Methods Documentation
- getFullMetadata() TaskMetadata¶
Get metadata for all tasks.
- Returns:
- metadata
TaskMetadata The keys are the full task name. Values are metadata for the top-level task and all subtasks, sub-subtasks, etc.
- metadata
Notes
The returned metadata includes timing information (if
@timer.timeMethodis used) and any metadata set by the task. The name of each item consists of the full task name with.replaced by:, followed by.and the name of the item, e.g.:topLevelTaskName:subtaskName:subsubtaskName.itemName
using
:in the full task name disambiguates the rare situation that a task has a subtask and a metadata item with the same name.
- getFullName() str¶
Get the task name as a hierarchical name including parent task names.
- Returns:
- fullName
str The full name consists of the name of the parent task and each subtask separated by periods. For example:
The full name of top-level task “top” is simply “top”.
The full name of subtask “sub” of top-level task “top” is “top.sub”.
The full name of subtask “sub2” of subtask “sub” of top-level task “top” is “top.sub.sub2”.
- fullName
- getName() str¶
Get the name of the task.
- Returns:
- taskName
str Name of the task.
- taskName
See also
getFullNameGet the full name of the task.
- getTaskDict() dict[str, weakref.ReferenceType[lsst.pipe.base.task.Task]]¶
Get a dictionary of all tasks as a shallow copy.
- Returns:
- taskDict
dict Dictionary containing full task name: task object for the top-level task and all subtasks, sub-subtasks, etc.
- taskDict
- classmethod makeField(doc: str) ConfigurableField¶
Make a
lsst.pex.config.ConfigurableFieldfor this task.- Parameters:
- doc
str Help text for the field.
- doc
- Returns:
- configurableField
lsst.pex.config.ConfigurableField A
ConfigurableFieldfor this task.
- configurableField
Examples
Provides a convenient way to specify this task is a subtask of another task.
Here is an example of use:
class OtherTaskConfig(lsst.pex.config.Config): aSubtask = ATaskClass.makeField("brief description of task")
- makeSubtask(name: str, **keyArgs: Any) None¶
Create a subtask as a new instance as the
nameattribute of this task.- Parameters:
- name
str Brief name of the subtask.
- **keyArgs
Extra keyword arguments used to construct the task. The following arguments are automatically provided and cannot be overridden:
config.parentTask.
- name
Notes
The subtask must be defined by
Task.config.name, an instance ofConfigurableFieldorRegistryField.
- 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.
- 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.
- exposure
- 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.
- results
- 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