TaskDatasetTypes¶
-
class
lsst.pipe.base.
TaskDatasetTypes
(initInputs: FrozenSet[DatasetType], initOutputs: FrozenSet[DatasetType], inputs: FrozenSet[DatasetType], prerequisites: FrozenSet[DatasetType], outputs: FrozenSet[DatasetType])¶ Bases:
object
An immutable struct that extracts and classifies the dataset types used by a
PipelineTask
Methods Summary
fromTaskDef
(taskDef, *, registry)Extract and classify the dataset types from a single PipelineTask
.Methods Documentation
-
classmethod
fromTaskDef
(taskDef: lsst.pipe.base.pipeline.TaskDef, *, registry: lsst.daf.butler.core.registry.Registry) → lsst.pipe.base.pipeline.TaskDatasetTypes¶ Extract and classify the dataset types from a single
PipelineTask
.Parameters: - taskDef: `TaskDef`
An instance of a
TaskDef
class for a particularPipelineTask
.- registry: `Registry`
Registry used to construct normalized
DatasetType
objects and retrieve those that are incomplete.
Returns: - types: `TaskDatasetTypes`
The dataset types used by this task.
-
classmethod