SsSingleFrameAssociationConnections#

class lsst.ap.association.SsSingleFrameAssociationConnections(*, config: PipelineTaskConfig | None = None)#

Bases: PipelineTaskConnections

Butler connections for SsSingleFrameAssociationTask.

Attributes Summary

allConnections

Mapping holding all connection attributes.

associatedSsSources

Connection for output dataset.

defaultTemplates

deprecatedTemplates

dimensions

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

exposure

Class used for declaring PipelineTask input connections.

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.

outputs

Set with the names of all Output connection attributes.

prerequisiteInputs

Set with the names of all PrerequisiteInput connection attributes.

solarSystemObjectTable

Class used for declaring PipelineTask input connections.

sourceTable

Class used for declaring PipelineTask input connections.

unassociatedSsObjects

Connection for output dataset.

Attributes Documentation

allConnections: Mapping[str, BaseConnection] = {'associatedSsSources': Output(name='ssSingleFrameAssociatedSources', storageClass='ArrowAstropy', doc='ssSource record columns which can be computed as of association', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'exposure': Input(name='initial_pvi', storageClass='ExposureF', doc='Exposure from which source table was generated', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'solarSystemObjectTable': Input(name='preloaded_SsObjects', storageClass='ArrowAstropy', doc='Optional catalog of SolarSolarSystem objects expected to beobservable in this detectorVisit.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'group', 'detector'), isCalibration=False, deferLoad=False, minimum=0, deferGraphConstraint=False, deferBinding=False), 'sourceTable': Input(name='initial_stars_footprints_detector', storageClass='SourceCatalog', doc='Catalog of calibrated Sources.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'unassociatedSsObjects': Output(name='ssSingleFrameUnassociatedObjects', storageClass='ArrowAstropy', doc='Expected locations of an ssObject with no source', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=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.

associatedSsSources#

Connection for output dataset.

defaultTemplates = {'fakesType': ''}#
deprecatedTemplates = {}#
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 a frozenset and may not be replaced.

exposure#

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.

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({'exposure', 'solarSystemObjectTable', 'sourceTable'})#

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.

outputs: set[str] = frozenset({'associatedSsSources', 'unassociatedSsObjects'})#

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.

solarSystemObjectTable#

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.

sourceTable#

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.

unassociatedSsObjects#

Connection for output dataset.