|
def | __setattr__ (self, attr, value, at=None, label="assignment") |
|
Any | __call__ (self, *Any args, **Any kwargs) |
|
def | __iter__ (self) |
|
def | keys (self) |
|
def | values (self) |
|
def | items (self) |
|
def | __contains__ (self, name) |
|
def | __new__ (cls, *args, **kw) |
|
def | __reduce__ (self) |
|
def | setDefaults (self) |
|
def | update (self, **kw) |
|
def | load (self, filename, root="config") |
|
def | loadFromStream (self, stream, root="config", filename=None) |
|
def | loadFromString (self, code, root="config", filename=None) |
|
def | save (self, filename, root="config") |
|
def | saveToString (self, skipImports=False) |
|
def | saveToStream (self, outfile, root="config", skipImports=False) |
|
def | freeze (self) |
|
def | toDict (self) |
|
def | names (self) |
|
def | validate (self) |
|
def | formatHistory (self, name, **kwargs) |
|
def | __setattr__ (self, attr, value, at=None, label="assignment") |
|
def | __delattr__ (self, attr, at=None, label="deletion") |
|
def | __eq__ (self, other) |
|
def | __ne__ (self, other) |
|
def | __str__ (self) |
|
def | __repr__ (self) |
|
def | compare (self, other, shortcut=True, rtol=1e-8, atol=1e-8, output=None) |
|
def | __init_subclass__ (cls, **kwargs) |
|
def | __init__ (cls, name, bases, dict_) |
|
def | __setattr__ (cls, name, value) |
|
A `ConfigurableAction` is an interface that extends a
`lsst.pex.config.Config` class to include a ``__call__`` method.
This interface is designed to create an action that can be used at
runtime with a state that is determined during the configuration stage. A
single action thus may be assigned multiple times, each with different
configurations.
This allows state to be set and recorded at configuration time,
making future reproduction of results easy.
This class is intended to be an interface only, but because of various
inheritance conflicts this class can not be implemented as an Abstract
Base Class. Instead, the ``__call__`` method is purely virtual, meaning
that it will raise a `NotImplementedError` when called. Subclasses that
represent concrete actions must provide an override.