InitOutputDatasetField¶
- 
lsst.pipe.base.InitOutputDatasetField(doc, name, storageClass, check=None)¶
- Factory function to create - Configclass instances of- InitOutputDatasetConfig- This function servers as syntactic sugar for creating Configurable fields which are - InitOutputDatasetConfig. The naming of this function violates the normal convention of a lowercase first letter in the function name, as this function is intended to sit in the same place as- ConfigFieldclasses, and consistency in declaration syntax is important.- The input arguments for this class are a combination of the arguments for - ConfigFieldand- InitOutputDatasetConfig. The arguments doc and check come from- ConfigField, while name and storageClass come from- InitOutputDatasetConfig.- Parameters: - doc : str
- Documentation string for the - InitOutputDatasetConfig
- name : str
- Name of the - DatasetTypein the returned- InitOutputDatasetConfig
- storageClass : str
- Name of the - StorageClassin the- InitOutputDatasetConfig
- check : callable
- A callable to be called with the field value that returns False if the value is invalid. 
 - Returns: - result : ConfigField
- Instance of a - ConfigFieldwith- InputDatasetConfigas a dtype
 
- doc :