Input¶
- 
class lsst.pipe.base.connectionTypes.Input(name: str, storageClass: str, doc: str = '', multiple: bool = False, dimensions: Iterable[str] = (), isCalibration: bool = False, deferLoad: bool = False, minimum: int = 1)¶
- Bases: - lsst.pipe.base.connectionTypes.BaseInput- Attributes Summary - deferLoad- dimensions- doc- isCalibration- minimum- multiple- Methods Summary - makeDatasetType(universe, …)- Construct a true - DatasetTypeinstance with normalized dimensions.- Attributes Documentation - 
deferLoad= False¶
 - 
dimensions= ()¶
 - 
doc= ''¶
 - 
isCalibration= False¶
 - 
minimum= 1¶
 - 
multiple= False¶
 - Methods Documentation - 
makeDatasetType(universe: lsst.daf.butler.core.dimensions._universe.DimensionUniverse, parentStorageClass: Union[lsst.daf.butler.core.storageClass.StorageClass, str, None] = None) → lsst.daf.butler.core.datasets.type.DatasetType¶
- Construct a true - DatasetTypeinstance with normalized dimensions.- Parameters: - universe : lsst.daf.butler.DimensionUniverse
- Set of all known dimensions to be used to normalize the dimension names specified in config. 
- parentStorageClass : lsst.daf.butler.StorageClassorstr, optional
- Parent storage class for component datasets; - Noneotherwise.
 - Returns: - datasetType : DatasetType
- The - DatasetTypedefined by this connection.
 
- universe : 
 
-