Coverage for python/lsst/analysis/tools/tasks/diaSourceTableTractAnalysis.py: 92%

13 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-16 04:37 -0700

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/>. 

21 

22__all__ = ("DiaSourceTableTractAnalysisConfig", "DiaSourceTableTractAnalysisTask") 

23 

24from lsst.pipe.base import connectionTypes as ct 

25from lsst.skymap import BaseSkyMap 

26 

27from ..interfaces import AnalysisBaseConfig, AnalysisBaseConnections, AnalysisPipelineTask 

28 

29 

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 ) 

47 

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 ) 

54 

55 

56class DiaSourceTableTractAnalysisConfig( 

57 AnalysisBaseConfig, pipelineConnections=DiaSourceTableTractAnalysisConnections 

58): 

59 def setDefaults(self): 

60 super().setDefaults() 

61 

62 

63class DiaSourceTableTractAnalysisTask(AnalysisPipelineTask): 

64 ConfigClass = DiaSourceTableTractAnalysisConfig 

65 _DefaultName = "DiaSourceTableTractAnalysis"