lsst.pipe.base
19.0.0-18-gfb21c91+9
|
Public Member Functions | |
def | __init__ (self, **kwargs) |
def | __setattr__ (self, str name, typing.Union[DatasetRef, typing.List[DatasetRef]] value) |
def | __delattr__ (self, name) |
typing.Generator[typing.Tuple[str, typing.Union[DatasetRef, typing.List[DatasetRef]]], None, None] | __iter__ (self) |
typing.Generator[str, None, None] | keys (self) |
A Namespace to map defined variable names of connections to their `lsst.daf.buter.DatasetRef`s This class maps the names used to define a connection on a PipelineTaskConnectionsClass to the corresponding `lsst.daf.butler.DatasetRef`s provided by a `lsst.daf.butler.Quantum` instance. This will be a quantum of execution based on the graph created by examining all the connections defined on the `PipelineTaskConnectionsClass`.
Definition at line 189 of file connections.py.
def lsst.pipe.base.connections.QuantizedConnection.__init__ | ( | self, | |
** | kwargs | ||
) |
Definition at line 200 of file connections.py.
def lsst.pipe.base.connections.QuantizedConnection.__delattr__ | ( | self, | |
name | |||
) |
Definition at line 210 of file connections.py.
typing.Generator[typing.Tuple[str, typing.Union[DatasetRef, typing.List[DatasetRef]]], None, None] lsst.pipe.base.connections.QuantizedConnection.__iter__ | ( | self | ) |
Make an Iterator for this QuantizedConnection Iterating over a QuantizedConnection will yield a tuple with the name of an attribute and the value associated with that name. This is similar to dict.items() but is on the namespace attributes rather than dict keys.
Definition at line 214 of file connections.py.
def lsst.pipe.base.connections.QuantizedConnection.__setattr__ | ( | self, | |
str | name, | ||
typing.Union[DatasetRef, typing.List[DatasetRef]] | value | ||
) |
Definition at line 205 of file connections.py.
typing.Generator[str, None, None] lsst.pipe.base.connections.QuantizedConnection.keys | ( | self | ) |
Returns an iterator over all the attributes added to a QuantizedConnection class
Definition at line 225 of file connections.py.