Coverage for python/lsst/faro/summary/PatchSummary.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1import lsst.pipe.base as pipeBase
3from lsst.faro.base.CatalogSummaryBase import (CatalogSummaryBaseTaskConnections, CatalogSummaryBaseTask,
4 CatalogSummaryBaseTaskConfig)
6__all__ = ("PatchSummaryTaskConnections", "PatchSummaryTaskConfig", "PatchSummaryTask")
9class PatchSummaryTaskConnections(CatalogSummaryBaseTaskConnections):
11 measurements = pipeBase.connectionTypes.Input(doc="{package}_{metric}.",
12 dimensions=("tract", "patch", "skymap",
13 "band"),
14 storageClass="MetricValue",
15 name="metricvalue_{package}_{metric}",
16 multiple=True)
19class PatchSummaryTaskConfig(CatalogSummaryBaseTaskConfig,
20 pipelineConnections=PatchSummaryTaskConnections):
21 pass
24class PatchSummaryTask(CatalogSummaryBaseTask):
26 ConfigClass = PatchSummaryTaskConfig
27 _DefaultName = "patchSummaryTask"