Coverage for python/lsst/analysis/tools/tasks/diaSourceTableTractAnalysis.py: 92%
13 statements
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-18 11:13 +0000
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-18 11:13 +0000
1# This file is part of analysis_tools.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# This program is free software: you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation, either version 3 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program. If not, see <https://www.gnu.org/licenses/>.
22__all__ = ("DiaSourceTableTractAnalysisConfig", "DiaSourceTableTractAnalysisTask")
24from lsst.pipe.base import connectionTypes as ct
25from lsst.skymap import BaseSkyMap
27from ..interfaces import AnalysisBaseConfig, AnalysisBaseConnections, AnalysisPipelineTask
30class DiaSourceTableTractAnalysisConnections(
31 AnalysisBaseConnections,
32 dimensions=("skymap", "tract"),
33 defaultTemplates={
34 "consolidateAssocDiaSourceTableInputName": "diaSourceTable_tract",
35 },
36):
37 data = ct.Input(
38 doc="Table of per-tract DiaSources to load from the butler",
39 name="{consolidateAssocDiaSourceTableInputName}",
40 storageClass="DataFrame",
41 deferLoad=True,
42 dimensions=(
43 "skymap",
44 "tract",
45 ),
46 )
48 skyMap = ct.Input(
49 doc="Input definition of geometry/bbox and projection/wcs",
50 name=BaseSkyMap.SKYMAP_DATASET_TYPE_NAME,
51 storageClass="SkyMap",
52 dimensions=("skymap",),
53 )
56class DiaSourceTableTractAnalysisConfig(
57 AnalysisBaseConfig, pipelineConnections=DiaSourceTableTractAnalysisConnections
58):
59 def setDefaults(self):
60 super().setDefaults()
63class DiaSourceTableTractAnalysisTask(AnalysisPipelineTask):
64 ConfigClass = DiaSourceTableTractAnalysisConfig
65 _DefaultName = "DiaSourceTableTractAnalysis"