lsst.pipe.tasks gcf790cdeb6+e07a3617c0
Loading...
Searching...
No Matches
lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConfig Class Reference
Inheritance diagram for lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConfig:
lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections

Static Public Attributes

 useCellCoadds
 
 multibandDeblend
 
 idGenerator = SkyMapIdGeneratorConfig.make_field()
 
 inputSchema
 
 peakSchema
 
 mergedDetections
 
 coadds
 
 coadds_cell
 
 backgrounds
 
 deconvolvedCoadds
 
 outputSchema
 
 fluxCatalogs
 
 templateCatalogs
 
 deblendedCatalog
 
 scarletModelData
 
 objectParents
 

Detailed Description

Definition at line 144 of file deblendCoaddSourcesPipeline.py.

Member Data Documentation

◆ backgrounds

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.backgrounds
staticinherited
Initial value:
= cT.Input(
doc="Background model to subtract from the cell-based coadd",
name="{inputCoaddName}Coadd_calexp_background",
storageClass="Background",
multiple=True,
dimensions=("tract", "patch", "band", "skymap")
)

Definition at line 75 of file deblendCoaddSourcesPipeline.py.

◆ coadds

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.coadds
staticinherited
Initial value:
= cT.Input(
doc="Exposure on which to run deblending",
name="{inputCoaddName}Coadd_calexp",
storageClass="ExposureF",
multiple=True,
dimensions=("tract", "patch", "band", "skymap")
)

Definition at line 61 of file deblendCoaddSourcesPipeline.py.

◆ coadds_cell

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.coadds_cell
staticinherited
Initial value:
= cT.Input(
doc="Exposure on which to run deblending",
name="{inputCoaddName}CoaddCell",
storageClass="MultipleCellCoadd",
multiple=True,
dimensions=("tract", "patch", "band", "skymap")
)

Definition at line 68 of file deblendCoaddSourcesPipeline.py.

◆ deblendedCatalog

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.deblendedCatalog
staticinherited
Initial value:
= cT.Output(
doc="Catalogs produced by multiband deblending",
name="{outputCoaddName}Coadd_deblendedCatalog",
storageClass="SourceCatalog",
dimensions=("tract", "patch", "skymap"),
)

Definition at line 112 of file deblendCoaddSourcesPipeline.py.

◆ deconvolvedCoadds

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.deconvolvedCoadds
staticinherited
Initial value:
= cT.Input(
doc="Deconvolved coadds",
name="deconvolved_{inputCoaddName}_coadd",
storageClass="ExposureF",
multiple=True,
dimensions=("tract", "patch", "band", "skymap")
)

Definition at line 82 of file deblendCoaddSourcesPipeline.py.

◆ fluxCatalogs

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.fluxCatalogs
staticinherited
Initial value:
= cT.Output(
doc="Flux weighted catalogs produced by multiband deblending",
name="{outputCoaddName}Coadd_deblendedFlux",
storageClass="SourceCatalog",
dimensions=("tract", "patch", "band", "skymap"),
multiple=True,
deprecated="Deprecated and unused; will be removed after v29."
)

Definition at line 95 of file deblendCoaddSourcesPipeline.py.

◆ idGenerator

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConfig.idGenerator = SkyMapIdGeneratorConfig.make_field()
static

Definition at line 154 of file deblendCoaddSourcesPipeline.py.

◆ inputSchema

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.inputSchema
staticinherited
Initial value:
= cT.InitInput(
doc="Input schema to use in the deblend catalog",
name="{inputCoaddName}Coadd_mergeDet_schema",
storageClass="SourceCatalog"
)

Definition at line 45 of file deblendCoaddSourcesPipeline.py.

◆ mergedDetections

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.mergedDetections
staticinherited
Initial value:
= cT.Input(
doc="Detection catalog merged across bands",
name="{inputCoaddName}Coadd_mergeDet",
storageClass="SourceCatalog",
dimensions=("tract", "patch", "skymap")
)

Definition at line 55 of file deblendCoaddSourcesPipeline.py.

◆ multibandDeblend

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConfig.multibandDeblend
static
Initial value:
= ConfigurableField(
target=ScarletDeblendTask,
doc="Task to deblend an images in multiple bands"
)

Definition at line 150 of file deblendCoaddSourcesPipeline.py.

◆ objectParents

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.objectParents
staticinherited
Initial value:
= cT.Output(
doc="Parents of the deblended objects",
name="object_parent_patch",
storageClass="SourceCatalog",
dimensions=("tract", "patch", "skymap"),
)

Definition at line 124 of file deblendCoaddSourcesPipeline.py.

◆ outputSchema

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.outputSchema
staticinherited
Initial value:
= cT.InitOutput(
doc="Output of the schema used in deblending task",
name="{outputCoaddName}Coadd_deblendedFlux_schema",
storageClass="SourceCatalog"
)

Definition at line 89 of file deblendCoaddSourcesPipeline.py.

◆ peakSchema

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.peakSchema
staticinherited
Initial value:
= cT.InitInput(
doc="Schema of the footprint peak catalogs",
name="{inputCoaddName}Coadd_peak_schema",
storageClass="PeakCatalog"
)

Definition at line 50 of file deblendCoaddSourcesPipeline.py.

◆ scarletModelData

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.scarletModelData
staticinherited
Initial value:
= cT.Output(
doc="Multiband scarlet models produced by the deblender",
name="{outputCoaddName}Coadd_scarletModelData",
storageClass="LsstScarletModelData",
dimensions=("tract", "patch", "skymap"),
)

Definition at line 118 of file deblendCoaddSourcesPipeline.py.

◆ templateCatalogs

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConnections.templateCatalogs
staticinherited
Initial value:
= cT.Output(
doc="Template catalogs produced by multiband deblending",
name="{outputCoaddName}Coadd_deblendedModel",
storageClass="SourceCatalog",
dimensions=("tract", "patch", "band", "skymap"),
multiple=True,
deprecated="Deprecated and unused; will be removed after v29."
)

Definition at line 104 of file deblendCoaddSourcesPipeline.py.

◆ useCellCoadds

lsst.pipe.tasks.deblendCoaddSourcesPipeline.DeblendCoaddSourcesMultiConfig.useCellCoadds
static
Initial value:
= Field[bool](
doc="Use cell-based coadds instead of regular coadds?",
default=False,
)

Definition at line 146 of file deblendCoaddSourcesPipeline.py.


The documentation for this class was generated from the following file: