DiaPipelineConnections¶
- class lsst.ap.association.DiaPipelineConnections(*, config: PipelineTaskConfig | None = None)¶
- Bases: - PipelineTaskConnections- Butler connections for DiaPipelineTask. - Attributes Summary - Mapping holding all connection attributes. - Connection for output dataset. - Connection for output dataset. - Connection for output dataset. - Connection for output dataset. - Class used for declaring PipelineTask input connections. - Class used for declaring PipelineTask input connections. - Set of dimension names that define the unit of work for this task. - Class used for declaring PipelineTask input connections. - 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.- Class used for declaring PipelineTask input connections. - Class used for declaring PipelineTask input connections. - Class used for declaring PipelineTask input connections. - Set with the names of all - PrerequisiteInputconnection attributes.- Class used for declaring PipelineTask input connections. - Class used for declaring PipelineTask input connections. - Methods Summary - adjustQuantum(inputs, outputs, label, dataId)- Override to make adjustments to - lsst.daf.butler.DatasetRefobjects in the- lsst.daf.butler.core.Quantumduring the graph generation stage of the activator.- buildDatasetRefs(quantum)- Build - QuantizedConnectioncorresponding to input- Quantum.- Return the names of regular input and output connections whose data IDs should be used to compute the spatial bounds of this task's quanta. - Return the names of regular input and output connections whose data IDs should be used to compute the temporal bounds of this task's quanta. - Attributes Documentation - allConnections: Mapping[str, BaseConnection] = {'apdbMarker': Output(name='apdb_marker', storageClass='Config', doc='Marker dataset storing the configuration of the Apdb for each visit/detector. Used to signal the completion of the pipeline.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'associatedDiaSources': Output(name='{fakesType}{coaddName}Diff_assocDiaSrc', storageClass='DataFrame', doc='Optional output storing the DiaSource catalog after matching, calibration, and standardization for insertion into the Apdb.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'diaForcedSources': Output(name='{fakesType}{coaddName}Diff_diaForcedSrc', storageClass='DataFrame', doc='Optional output storing the forced sources computed at the diaObject positions.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'diaObjects': Output(name='{fakesType}{coaddName}Diff_diaObject', storageClass='DataFrame', doc='Optional output storing the updated diaObjects associated to these sources.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False), 'diaSourceTable': Input(name='{fakesType}{coaddName}Diff_diaSrcTable', storageClass='DataFrame', doc='Catalog of calibrated DiaSources.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=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), 'exposure': Input(name='{fakesType}calexp', storageClass='ExposureF', doc='Calibrated exposure differenced with a template image during image differencing.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'preloadedDiaForcedSources': Input(name='preloaded_diaForcedSources', storageClass='DataFrame', doc='DiaForcedSources preloaded from the APDB.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'group', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'preloadedDiaObjects': Input(name='preloaded_diaObjects', storageClass='DataFrame', doc='DiaObjects preloaded from the APDB.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'group', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'preloadedDiaSources': Input(name='preloaded_diaSources', storageClass='DataFrame', doc='DiaSources preloaded from the APDB.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'group', 'detector'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'solarSystemObjectTable': Input(name='visitSsObjects', storageClass='DataFrame', doc='Catalog of SolarSolarSystem objects expected to be observable in this detectorVisit.', multiple=False, deprecated=None, _deprecation_context='', dimensions=('instrument', 'visit'), isCalibration=False, deferLoad=False, minimum=1, deferGraphConstraint=False, deferBinding=False), 'template': Input(name='{fakesType}{coaddName}Diff_templateExp', storageClass='ExposureF', doc='Warped template used to create `subtractedExposure`. Not PSF matched.', 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 in- inputs,- prerequisiteInputs,- outputs,- initInputs, and- initOutputs.
 - apdbMarker¶
- Connection for output dataset. 
 - associatedDiaSources¶
- Connection for output dataset. 
 - defaultTemplates = {'coaddName': 'deep', 'fakesType': ''}¶
 - deprecatedTemplates = {}¶
 - diaForcedSources¶
- Connection for output dataset. 
 - diaObjects¶
- Connection for output dataset. 
 - diaSourceTable¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - diffIm¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; 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 a- frozensetand may not be replaced.
 - exposure¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - initInputs: set[str] = frozenset({})¶
- 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({'diaSourceTable', 'diffIm', 'exposure', 'preloadedDiaForcedSources', 'preloadedDiaObjects', 'preloadedDiaSources', 'solarSystemObjectTable', 'template'})¶
- 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 a- frozensetand may not be replaced.
 - outputs: set[str] = frozenset({'apdbMarker', 'associatedDiaSources', 'diaForcedSources', 'diaObjects'})¶
- Set with the names of all - Outputconnection attributes.- See - inputsfor additional information.
 - preloadedDiaForcedSources¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - preloadedDiaObjects¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - preloadedDiaSources¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - prerequisiteInputs: set[str] = frozenset({})¶
- Set with the names of all - PrerequisiteInputconnection attributes.- See - inputsfor additional information.
 - solarSystemObjectTable¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - template¶
- Class used for declaring PipelineTask input connections. - Attributes:
- namestr
- The default name used to identify the dataset type. 
- storageClassstr
- The storage class used when (un)/persisting the dataset type. 
- multiplebool
- Indicates if this connection should expect to contain multiple objects of the given dataset type. Tasks with more than one connection with - multiple=Truewith the same dimensions may want to implement- PipelineTaskConnections.adjustQuantumto ensure those datasets are consistent (i.e. zip-iterable) in- PipelineTask.runQuantumand notify the execution system as early as possible of outputs that will not be produced because the corresponding input is missing.
- dimensionsiterable of str
- The - lsst.daf.butler.Butler- lsst.daf.butler.Registrydimensions used to identify the dataset type identified by the specified name.
- deferLoadbool
- Indicates that this dataset type will be loaded as a - lsst.daf.butler.DeferredDatasetHandle. PipelineTasks can use this object to load the object at a later time.
- minimumbool
- Minimum number of datasets required for this connection, per quantum. This is checked in the base implementation of - PipelineTaskConnections.adjustQuantum, which raises- NoWorkFoundif the minimum is not met for- Inputconnections (causing the quantum to be pruned, skipped, or never created, depending on the context), and- FileNotFoundErrorfor- PrerequisiteInputconnections (causing QuantumGraph generation to fail).- PipelineTaskimplementations may provide custom- adjustQuantumimplementations for more fine-grained or configuration-driven constraints, as long as they are compatible with this minium.
- deferGraphConstraintbool, optional
- If - True, do not include this dataset type’s existence in the initial query that starts the QuantumGraph generation process. This can be used to make QuantumGraph generation faster by avoiding redundant datasets, and in certain cases it can (along with careful attention to which tasks are included in the same QuantumGraph) be used to work around the QuantumGraph generation algorithm’s inflexible handling of spatial overlaps. This option has no effect when the connection is not an overall input of the pipeline (or subset thereof) for which a graph is being created, and it never affects the ordering of quanta.
- deferBindingbool, optional
- If - True, the dataset will not be automatically included in the pipeline graph,- deferGraphConstraintis implied. The custom QuantumGraphBuilder is required to bind it and add a corresponding edge to the pipeline graph. This option allows to have the same dataset type as both input and output of a quantum.
 
- name
- Raises:
- TypeError
- Raised if - minimumis greater than one but- multiple=False.
- NotImplementedError
- Raised if - minimumis zero for a regular- Inputconnection; this is not currently supported by our QuantumGraph generation algorithm.
 
 
 - Methods Documentation - adjustQuantum(inputs, outputs, label, dataId)¶
- Override to make adjustments to - lsst.daf.butler.DatasetRefobjects in the- lsst.daf.butler.core.Quantumduring the graph generation stage of the activator.- This implementation checks to make sure that the filters in the dataset are compatible with AP processing as set by the Apdb/DPDD schema. - Parameters:
- inputsdict
- Dictionary whose keys are an input (regular or prerequisite) connection name and whose values are a tuple of the connection instance and a collection of associated - DatasetRefobjects. The exact type of the nested collections is unspecified; it can be assumed to be multi-pass iterable and support- lenand- in, but it should not be mutated in place. In contrast, the outer dictionaries are guaranteed to be temporary copies that are true- dictinstances, and hence may be modified and even returned; this is especially useful for delegating to- super(see notes below).
- outputsdict
- Dict of output datasets, with the same structure as - inputs.
- labelstr
- Label for this task in the pipeline (should be used in all diagnostic messages). 
- data_idlsst.daf.butler.DataCoordinate
- Data ID for this quantum in the pipeline (should be used in all diagnostic messages). 
 
- inputs
- Returns:
- adjusted_inputsdict
- Dict of the same form as - inputswith updated containers of input- DatasetRefobjects. Connections that are not changed should not be returned at all. Datasets may only be removed, not added. Nested collections may be of any multi-pass iterable type, and the order of iteration will set the order of iteration within- PipelineTask.runQuantum.
- adjusted_outputsdict
- Dict of updated output datasets, with the same structure and interpretation as - adjusted_inputs.
 
- adjusted_inputs
- Raises:
- ScalarError
- Raised if any - Inputor- PrerequisiteInputconnection has- multipleset to- False, but multiple datasets.
- NoWorkFound
- Raised to indicate that this quantum should not be run; not enough datasets were found for a regular - Inputconnection, and the quantum should be pruned or skipped.
- FileNotFoundError
- Raised to cause QuantumGraph generation to fail (with the message included in this exception); not enough datasets were found for a - PrerequisiteInputconnection.
 
 
 - buildDatasetRefs(quantum: Quantum) tuple[lsst.pipe.base.connections.InputQuantizedConnection, lsst.pipe.base.connections.OutputQuantizedConnection]¶
- Build - QuantizedConnectioncorresponding to input- Quantum.- Parameters:
- quantumlsst.daf.butler.Quantum
- Quantum object which defines the inputs and outputs for a given unit of processing. 
 
- quantum
- Returns:
 
 - getSpatialBoundsConnections() Iterable[str]¶
- Return the names of regular input and output connections whose data IDs should be used to compute the spatial bounds of this task’s quanta. - The spatial bound for a quantum is defined as the union of the regions of all data IDs of all connections returned here, along with the region of the quantum data ID (if the task has spatial dimensions). - Returns:
- connection_namescollections.abc.Iterable[str]
- Names of collections with spatial dimensions. These are the task-internal connection names, not butler dataset type names. 
 
- connection_names
 - Notes - The spatial bound is used to search for prerequisite inputs that have skypix dimensions. The default implementation returns an empty iterable, which is usually sufficient for tasks with spatial dimensions, but if a task’s inputs or outputs are associated with spatial regions that extend beyond the quantum data ID’s region, this method may need to be overridden to expand the set of prerequisite inputs found. - Tasks that do not have spatial dimensions that have skypix prerequisite inputs should always override this method, as the default spatial bounds otherwise cover the full sky. 
 - getTemporalBoundsConnections() Iterable[str]¶
- Return the names of regular input and output connections whose data IDs should be used to compute the temporal bounds of this task’s quanta. - The temporal bound for a quantum is defined as the union of the timespans of all data IDs of all connections returned here, along with the timespan of the quantum data ID (if the task has temporal dimensions). - Returns:
- connection_namescollections.abc.Iterable[str]
- Names of collections with temporal dimensions. These are the task-internal connection names, not butler dataset type names. 
 
- connection_names
 - Notes - The temporal bound is used to search for prerequisite inputs that are calibration datasets. The default implementation returns an empty iterable, which is usually sufficient for tasks with temporal dimensions, but if a task’s inputs or outputs are associated with timespans that extend beyond the quantum data ID’s timespan, this method may need to be overridden to expand the set of prerequisite inputs found. - Tasks that do not have temporal dimensions that do not implement this method will use an infinite timespan for any calibration lookups.