PluginMap#

class lsst.meas.base.PluginMap#

Bases: OrderedDict

Map 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

iter()#

Return an iterator over plugins for use in single-object mode.

Notes#

Plugins which should be used in single-object mode are identified by having the doMeasure config attribute evaluate to True. This is usually a simple boolean class attribute.

iterN()#

Return an iterator over plugins for use in multi-object mode.

Notes#

Plugins which should be used in multi-object mode are identified by having the doMeasureN config attribute evaluate to True. This is usually a simple boolean class attribute.