ConfigMeta#
- class lsst.pex.config.ConfigMeta(name, bases, dict_)#
Bases:
typeA metaclass for
lsst.pex.config.Config.Parameters#
- name
str Name to use for class.
- bases
Iterable Base classes.
- dict_
dict Additional parameters.
Notes#
ConfigMetaadds a dictionary containing allFieldclass attributes as a class attribute called_fields, and adds the name of each field as an instance variable of the field itself (so you don’t have to pass the name of the field to the field constructor).- name