Coverage for python/lsst/meas/algorithms/__init__.py: 100%

38 statements  

« prev     ^ index     » next       coverage.py v7.2.4, created at 2023-04-29 03:34 -0700

1# 

2# LSST Data Management System 

3# 

4# Copyright 2008-2017 AURA/LSST. 

5# 

6# This product includes software developed by the 

7# LSST Project (http://www.lsst.org/). 

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 LSST License Statement and 

20# the GNU General Public License along with this program. If not, 

21# see <https://www.lsstcorp.org/LegalNotices/>. 

22# 

23"""lsst.meas.algorithms 

24""" 

25 

26import lsst.afw.image 

27import lsst.afw.math 

28 

29from._algorithmsLib import * 

30from .psfCandidate import * #python 

31from .coaddPsf import * 

32from .simple_curve import * 

33 

34from .psfDeterminer import * 

35from .pcaPsfDeterminer import * 

36from .starSelector import * 

37from .findCosmicRaysConfig import * 

38from .detection import * 

39from .gaussianPsfFactory import * 

40from .loadReferenceObjects import * 

41from .objectSizeStarSelector import * 

42from .makeCoaddApCorrMap import * 

43from .subtractBackground import * 

44from .measureApCorr import * 

45from .flaggedSourceSelector import * 

46from .sourceSelector import * 

47from .astrometrySourceSelector import * 

48from .matcherSourceSelector import * 

49from .convertReferenceCatalog import * 

50from .convertRefcatManager import * 

51from .readFitsCatalogTask import * 

52from .readTextCatalogTask import * 

53from .indexerRegistry import * 

54from .reserveSourcesTask import * 

55from .skyObjects import * 

56from .dynamicDetection import * 

57from .makePsfCandidates import * 

58from .stamps import * 

59from .brightStarStamps import * 

60from .accumulator_mean_stack import * 

61from .scaleVariance import * 

62from .noise_covariance import * 

63 

64from .version import * 

65 

66import lsst.utils