IsolatedStarAssociationConnections#

class lsst.pipe.tasks.isolatedStarAssociation.IsolatedStarAssociationConnections(*, config: PipelineTaskConfig | None = None)#

Bases: PipelineTaskConnections

Attributes Summary

allConnections

Mapping holding all connection attributes.

defaultTemplates

deprecatedTemplates

dimensions

Set of dimension names that define the unit of work for this task.

initInputs

Set with the names of all InitInput connection attributes.

initOutputs

Set with the names of all InitOutput connection attributes.

inputs

Set with the names of all connectionTypes.Input connection attributes.

isolated_star_cat

Connection for output dataset.

isolated_star_sources

Connection for output dataset.

outputs

Set with the names of all Output connection attributes.

prerequisiteInputs

Set with the names of all PrerequisiteInput connection attributes.

skymap

Class used for declaring PipelineTask input connections.

source_table_visit

Class used for declaring PipelineTask input connections.

Attributes Documentation

allConnections: Mapping[str, BaseConnection] = {'isolated_star_cat': Output(name='isolated_star_presource_associations', storageClass='ArrowAstropy', doc='Catalog of isolated star positions', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'tract', 'skymap'), isCalibration=False), 'isolated_star_sources': Output(name='isolated_star_presources', storageClass='ArrowAstropy', doc='Catalog of individual sources for the isolated stars', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'tract', 'skymap'), isCalibration=False), 'skymap': Input(name='skyMap', storageClass='SkyMap', doc='Input definition of geometry/bbox and projection/wcs for warped exposures', multiple=False, deprecated=None, _deprecation_context='', dimensions=('skymap',), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'source_table_visit': Input(name='preSourceTable_visit', storageClass='ArrowAstropy', doc='Source table in parquet format, per visit', multiple=True, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit'), isCalibration=False, deferLoad=True, 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 in inputs, prerequisiteInputs, outputs, initInputs, and initOutputs.

defaultTemplates = {}#
deprecatedTemplates = {}#
dimensions: set[str] = {'instrument', 'skymap', 'tract'}#

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 a frozenset and may not be replaced.

initInputs: set[str] = frozenset({})#

Set with the names of all InitInput connection attributes.

See inputs for additional information.

initOutputs: set[str] = frozenset({})#

Set with the names of all InitOutput connection attributes.

See inputs for additional information.

inputs: set[str] = frozenset({'skymap', 'source_table_visit'})#

Set with the names of all connectionTypes.Input connection 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 a frozenset and may not be replaced.

isolated_star_cat#

Connection for output dataset.

isolated_star_sources#

Connection for output dataset.

outputs: set[str] = frozenset({'isolated_star_cat', 'isolated_star_sources'})#

Set with the names of all Output connection attributes.

See inputs for additional information.

prerequisiteInputs: set[str] = frozenset({})#

Set with the names of all PrerequisiteInput connection attributes.

See inputs for additional information.

skymap#

Class used for declaring PipelineTask input connections.

Raises#

TypeError

Raised if minimum is greater than one but multiple=False.

NotImplementedError

Raised if minimum is zero for a regular Input connection; this is not currently supported by our QuantumGraph generation algorithm.

source_table_visit#

Class used for declaring PipelineTask input connections.

Raises#

TypeError

Raised if minimum is greater than one but multiple=False.

NotImplementedError

Raised if minimum is zero for a regular Input connection; this is not currently supported by our QuantumGraph generation algorithm.