LSST Applications  21.0.0-141-gec8a224e+c9dc52cf11,22.0.0+052faf71bd,22.0.0+1c4650f311,22.0.0+40ce427c77,22.0.0+5b6c068b1a,22.0.0+7589c3a021,22.0.0+b84b5806bd,22.0.1-1-g7d6de66+961d22230d,22.0.1-1-g87000a6+314cd8b7ea,22.0.1-1-g8760c09+052faf71bd,22.0.1-1-g8e32f31+5b6c068b1a,22.0.1-10-g779eefa+7d186d72ce,22.0.1-12-g3bd7ecb+bec1274511,22.0.1-15-g63cc0c1+2a7037787d,22.0.1-17-ge5a99e88+2652af7731,22.0.1-19-g88addfe+961d22230d,22.0.1-2-g1cb3e5b+9c7a6aab6f,22.0.1-2-g8ef0a89+961d22230d,22.0.1-2-g92698f7+1c4650f311,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gb66926d+5b6c068b1a,22.0.1-2-gcb770ba+0723a13595,22.0.1-2-ge470956+36d961e575,22.0.1-21-g532228a4+2ac85e833c,22.0.1-29-g184b6e44e+8b185d4e2d,22.0.1-3-g59f966b+89b97c2637,22.0.1-3-g8c1d971+f90df4c6d0,22.0.1-3-g997b569+d69a7aa2f8,22.0.1-3-gaaec9c0+4d194bf81c,22.0.1-4-g1930a60+283d9d2f1a,22.0.1-4-g5b7b756+c1283a92b8,22.0.1-4-g8623105+961d22230d,22.0.1-7-gba73697+283d9d2f1a,22.0.1-8-g47d23f5+39e151d95f,master-g5f2689bdc5+40ce427c77,w.2021.38
LSST Data Management Base Package
__init__.py
Go to the documentation of this file.
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 
26 import lsst.afw.image
27 import lsst.afw.math
28 
29 from .cr import *
30 from .coaddBoundedField import *
31 from .imagePsf import *
32 from .interp import *
33 from .kernelPsf import *
34 from .pcaPsf import *
35 from .psfCandidate import * #python
36 from .singleGaussianPsf import *
37 from .spatialModelPsf import *
38 from .warpedPsf import *
39 from .coaddPsf import *
40 from .coaddTransmissionCurve import *
41 from .doubleGaussianPsf import *
42 from .simple_curve import *
43 
44 from .psfDeterminer import *
45 from .pcaPsfDeterminer import *
46 from .starSelector import *
47 from .findCosmicRaysConfig import *
48 from .detection import *
49 from .gaussianPsfFactory import *
50 from .loadReferenceObjects import *
51 from .objectSizeStarSelector import *
52 from .makeCoaddApCorrMap import *
53 from .subtractBackground import *
54 from .measureApCorr import *
55 from .flaggedSourceSelector import *
56 from .sourceSelector import *
57 from .astrometrySourceSelector import *
58 from .matcherSourceSelector import *
59 from .ingestIndexReferenceTask import *
60 from .loadIndexedReferenceObjects import *
61 from .indexerRegistry import *
62 from .reserveSourcesTask import *
63 from .skyObjects import *
64 from .dynamicDetection import *
65 from .makePsfCandidates import *
66 from .stamps import *
67 from .brightStarStamps import *
68 from .accumulator_mean_stack import *
69 
70 from .version import *
71 
72 import lsst.utils
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.