ReassignCwfsCutoutsTaskConnections#

class lsst.ts.wep.task.ReassignCwfsCutoutsTaskConnections(*, config=None)#

Bases: PipelineTaskConnections

Parameters:

config (PipelineTaskConfig | None, default: None)

Attributes Summary

allConnections

Mapping holding all connection attributes.

defaultTemplates

deprecatedTemplates

dimensions

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

donutStampsExtraOut

Connection for output dataset.

donutStampsIn

Class used for declaring PipelineTask input connections.

donutStampsIntraOut

Connection for output dataset.

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.

Methods Summary

adjust_all_quanta(adjuster)

This will drop intra quanta and assign them to the extra detector quanta

Attributes Documentation

allConnections: Mapping[str, BaseConnection] = {'donutStampsExtraOut': Output(name='donutStampsExtra', storageClass='StampsBase', doc='Extra-focal Donut Postage Stamp Images with Extra-focal detector id.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('visit', 'detector', 'instrument'), isCalibration=False), 'donutStampsIn': Input(name='donutStampsCwfs', storageClass='StampsBase', doc='Donut Postage Stamp Images with either Intra-focal or Extra-focal detector id.', multiple=True, deprecated=None, _deprecation_context='', dimensions=('visit', 'detector', 'instrument'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'donutStampsIntraOut': Output(name='donutStampsIntra', storageClass='StampsBase', doc='Intra-focal Donut Postage Stamp Images with Extra-focal detector id.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('visit', 'detector', 'instrument'), 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.

defaultTemplates = {}#
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.

donutStampsExtraOut#

Connection for output dataset.

donutStampsIn#

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.

donutStampsIntraOut#

Connection for output dataset.

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({'donutStampsIn'})#

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({'donutStampsExtraOut', 'donutStampsIntraOut'})#

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.

Methods Documentation

adjust_all_quanta(adjuster)#

This will drop intra quanta and assign them to the extra detector quanta

Parameters:

adjuster (QuantaAdjuster)

Return type:

None