PluginMap#
- class lsst.meas.base.PluginMap#
Bases:
OrderedDictMap of plugins to be run for a given task.
Notes#
Plugins are classes derived from
BasePlugin.We assume plugins are added to the plugin map according to their “Execution Order”, so this class doesn’t actually do any of the sorting (though it does have to maintain that order, which it does by inheriting from
collections.OrderedDict).Methods Summary
iter()Return an iterator over plugins for use in single-object mode.
iterN()Return an iterator over plugins for use in multi-object mode.
Methods Documentation