TransformDiaSourceCatalogConnections#
- class lsst.ap.association.TransformDiaSourceCatalogConnections(*, config: PipelineTaskConfig | None = None)#
Bases:
PipelineTaskConnectionsAttributes Summary
Mapping holding all connection attributes.
Class used for declaring PipelineTask input connections.
Connection for initInput dataset.
Connection for output dataset.
Class used for declaring PipelineTask input connections.
Set of dimension names that define the unit of work for this task.
Set with the names of all
InitInputconnection attributes.Set with the names of all
InitOutputconnection attributes.Set with the names of all
connectionTypes.Inputconnection attributes.Set with the names of all
Outputconnection attributes.Set with the names of all
PrerequisiteInputconnection attributes.Attributes Documentation
- allConnections: Mapping[str, BaseConnection] = {'diaSourceCat': Input(name='{fakesType}{coaddName}Diff_candidateDiaSrc', storageClass='SourceCatalog', doc='Catalog of DiaSources produced during image differencing.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'diaSourceSchema': InitInput(name='{fakesType}{coaddName}Diff_diaSrc_schema', storageClass='SourceCatalog', doc='Schema for DIASource catalog output by ImageDifference.', multiple=False, deprecated=None, _deprecation_context=''), 'diaSourceTable': Output(name='{fakesType}{coaddName}Diff_diaSrcTable', storageClass='ArrowAstropy', doc='.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'diffIm': Input(name='{fakesType}{coaddName}Diff_differenceExp', storageClass='ExposureF', doc='Difference image on which the DiaSources were detected.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False)}#
Mapping holding all connection attributes.
This is a read-only view that is automatically updated when connection attributes are added, removed, or replaced in
__init__. It is also updated after__init__completes to reflect changes ininputs,prerequisiteInputs,outputs,initInputs, andinitOutputs.
- defaultTemplates = {'coaddName': 'deep', 'fakesType': ''}#
- deprecatedTemplates = {}#
- diaSourceCat#
Class used for declaring PipelineTask input connections.
Raises#
- TypeError
Raised if
minimumis greater than one butmultiple=False.- NotImplementedError
Raised if
minimumis zero for a regularInputconnection; this is not currently supported by our QuantumGraph generation algorithm.
- diaSourceSchema#
Connection for initInput dataset.
- diaSourceTable#
Connection for output dataset.
- diffIm#
Class used for declaring PipelineTask input connections.
Raises#
- TypeError
Raised if
minimumis greater than one butmultiple=False.- NotImplementedError
Raised if
minimumis zero for a regularInputconnection; this is not currently supported by our QuantumGraph generation algorithm.
- dimensions: set[str] = {'detector', 'instrument', 'visit'}#
Set of dimension names that define the unit of work for this task.
Required and implied dependencies will automatically be expanded later and need not be provided.
This may be replaced or modified in
__init__to change the dimensions of the task. After__init__it will be afrozensetand may not be replaced.
- initInputs: set[str] = frozenset({'diaSourceSchema'})#
Set with the names of all
InitInputconnection attributes.See
inputsfor additional information.
- initOutputs: set[str] = frozenset({})#
Set with the names of all
InitOutputconnection attributes.See
inputsfor additional information.
- inputs: set[str] = frozenset({'diaSourceCat', 'diffIm'})#
Set with the names of all
connectionTypes.Inputconnection attributes.This is updated automatically as class attributes are added, removed, or replaced in
__init__. Removing entries from this set will cause those connections to be removed after__init__completes, but this is supported only for backwards compatibility; new code should instead just delete the collection attributed directly. After__init__this will be afrozensetand may not be replaced.