24 __all__ = [
"IndexerRegistry"]
26 from lsst.pex.config
import Config, makeRegistry, Field
27 from .htmIndexer
import HtmIndexer
29 IndexerRegistry = makeRegistry(
30 """Registry of indexing algorithms
37 doc=
"Depth of the HTM tree to make. Default is depth=7 which gives ~ 0.3 sq. deg. per trixel.",
49 makeHtmIndexer.ConfigClass = HtmIndexerConfig
50 IndexerRegistry.register(
"HTM", makeHtmIndexer)