LSST Applications g04dff08e69+a31126d12c,g0fba68d861+6f0555c5d7,g1ec0fe41b4+f536777771,g1fd858c14a+16adead242,g35bb328faa+fcb1d3bbc8,g36376648e7+fcceaebe53,g4af146b050+19aac6f792,g4d2262a081+0aec624b04,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+fcceaebe53,g6273192d42+d45c8c5480,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+01ed5cbf73,g8852436030+d9452d045a,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+fcceaebe53,g989de1cb63+4086c0989b,g9d31334357+fcceaebe53,g9f33ca652e+a9aa85e8df,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+ff234fad5d,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+e91e539f6f,gcf25f946ba+d9452d045a,gd6cbbdb0b4+af3c3595f5,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+26cbe7494a,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+b3e27b8ebc,gf67bdafdda+4086c0989b,v29.0.0.rc6
LSST Data Management Base Package
|
Classes | |
class | PluginMap |
class | PluginRegistry |
Functions | |
generateAlgorithmName (AlgClass) | |
register (name, shouldApCorr=False, apCorrList=()) | |
Registry for measurement plugins and utilities for plugin management.
lsst.meas.base.pluginRegistry.generateAlgorithmName | ( | AlgClass | ) |
Generate a name for an algorithm. This generates a short name for an algorithmic class that strips away terms that are generally redundant while remaining easy to trace to the code. Parameters ---------- AlgClass : subclass of `BaseAlgorithm` The class to generate a name for. Returns ------- name : `str` A short name for the algorithm. Notes ----- The returned name will cobmine the package name, with any ``lsst`` and/or ``meas`` prefix removed, with the class name, with any ``Algorithm`` suffix removed. For instance, ``lsst.meas.base.SdssShapeAlgorithm`` becomes ``base_SdssShape``.
Definition at line 34 of file pluginRegistry.py.
lsst.meas.base.pluginRegistry.register | ( | name, | |
shouldApCorr = False, | |||
apCorrList = () ) |
A decorator to register a plugin class in its base class's registry. Parameters ---------- shouldApCorr : `bool` If `True`, then this algorithm measures an instFlux that should be aperture corrected. This is shorthand for ``apCorrList=[name]`` and is ignored if ``apCorrList`` is specified. apCorrList : `list` of `str` List of field name prefixes for instFlux fields to be aperture corrected. If an algorithm produces a single instFlux that should be aperture corrected then it is simpler to set ``shouldApCorr=True``. But if an algorithm produces multiple such fields then it must specify ``apCorrList`` instead. For example, ``modelfit_CModel`` produces three such fields: ``apCorrList=("modelfit_CModel_exp", "modelfit_CModel_exp", "modelfit_CModel_def")``. If ``apCorrList`` is not empty then shouldApCorr is ignored.
Definition at line 163 of file pluginRegistry.py.