ButlerQuantumContext¶
-
class
lsst.pipe.base.ButlerQuantumContext(butler: lsst.daf.butler.butler.Butler, quantum: lsst.daf.butler.core.quantum.Quantum)¶ Bases:
objectButler like class specialized for a single quantum
A ButlerQuantumContext class wraps a standard butler interface and specializes it to the context of a given quantum. What this means in practice is that the only gets and puts that this class allows are DatasetRefs that are contained in the quantum.
In the future this class will also be used to record provenance on what was actually get and put. This is in contrast to what the preflight expects to be get and put by looking at the graph before execution.
Parameters: - butler :
lsst.daf.butler.Butler Butler object from/to which datasets will be get/put
- quantum :
lsst.daf.butler.core.Quantum Quantum object that describes the datasets which will be get/put by a single execution of this node in the pipeline graph.
Methods Summary
get(dataset, …)Fetches data from the butler put(values, List[Any], object], dataset, …)Puts data into the butler Methods Documentation
-
get(dataset: Union[lsst.pipe.base.connections.InputQuantizedConnection, List[lsst.daf.butler.core.datasets.DatasetRef], lsst.daf.butler.core.datasets.DatasetRef]) → object¶ Fetches data from the butler
Parameters: - dataset :
InputQuantizedConnectionorlist[DatasetRef] or
DatasetRefThis argument may either be an
InputQuantizedConnectionwhich describes all the inputs of a quantum, a list ofDatasetRef, or a singleDatasetRef. The function will get and return the corresponding datasets from the butler.
Returns: - return :
object This function returns arbitrary objects fetched from the bulter. The structure these objects are returned in depends on the type of the input argument. If the input dataset argument is a InputQuantizedConnection, then the return type will be a dictionary with keys corresponding to the attributes of the
InputQuantizedConnection(which in turn are the attribute identifiers of the connections). If the input argument is of typelistofDatasetRefthen the return type will be a list of objects. If the input argument is a singleDatasetRefthen a single object will be returned.
Raises: - ValueError
If a
DatasetRefis passed to get that is not defined in the quantum object
- dataset :
-
put(values: Union[lsst.pipe.base.struct.Struct, List[Any], object], dataset: Union[lsst.pipe.base.connections.OutputQuantizedConnection, List[lsst.daf.butler.core.datasets.DatasetRef], lsst.daf.butler.core.datasets.DatasetRef])¶ Puts data into the butler
Parameters: - values :
Structorlistofobjectorobject The data that should be put with the butler. If the type of the dataset is
OutputQuantizedConnectionthen this argument should be aStructwith corresponding attribute names. Each attribute should then correspond to either a list of object or a single object depending of the type of the corresponding attribute on dataset. I.e. if dataset.calexp is [datasetRef1, datasetRef2] then values.calexp should be [calexp1, calexp2]. Like wise if there is a single ref, then only a single object need be passed. The same restriction applies if dataset is directly alistofDatasetRefor a singleDatasetRef.- dataset :
OutputQuantizedConnectionorlistoflsst.daf.butler.DatasetRef This argument may either be an
InputQuantizedConnectionwhich describes all the inputs of a quantum, a list oflsst.daf.butler.DatasetRef, or a singlelsst.daf.butler.DatasetRef. The function will get and return the corresponding datasets from the butler.
Raises: - ValueError
If a
DatasetRefis passed to put that is not defined in the quantum object, or the type of values does not match what is expected from the type of dataset.
- values :
- butler :