Coverage for python / lsst / images / psfs / __init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-15 00:04 +0000

1# This file is part of lsst-images. 

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# Use of this source code is governed by a 3-clause BSD-style 

10# license that can be found in the LICENSE file. 

11 

12"""The `PointSpreadFunction` interface represents a model of how the image of 

13unresolved object is smeared out by some combination of atmosphere, optics, 

14and detector. 

15""" 

16 

17from ._base import * 

18from ._legacy import * 

19from ._piff import * 

20from ._gaussian import *