registerConfig¶
- 
lsst.pex.config.registerConfig(name, registry, target)¶
- Decorator that adds a class as a - ConfigClassin a- Registryand associates it with the given configurable.- Parameters: - name : str
- Name of the - targetin the- registry.
- registry : Registry
- The registry containing the - target.
- target : obj
- A configurable type, such as a subclass of - lsst.pipe.base.Task.
 - See also - Notes - Internally, this decorator runs - Registry.register.
- name :