LSST Applications  21.0.0-125-g25893231+6d8227318b,22.0.0+04b746aa76,22.0.0+11a2aa21cd,22.0.0+1350bb8745,22.0.0+647bf2e27e,22.0.0+64c1bc5aa5,22.0.0+898e48ea30,22.0.0+b624392ccb,22.0.0+d4689d920e,22.0.0+f308c4875f,22.0.1,22.0.1-1-g1b65d06+6e9d126b7c,22.0.1-1-g5f8d297+53a2ae012b,22.0.1-1-g7058be7+7961eec471,22.0.1-1-g7dab645+d3495674de,22.0.1-1-g8760c09+64c1bc5aa5,22.0.1-1-g949febb+64c1bc5aa5,22.0.1-1-ga324b9c+647bf2e27e,22.0.1-1-ga86695c+898e48ea30,22.0.1-1-gf9d8b05+b624392ccb,22.0.1-12-g9aaea118+4ac70a46d0,22.0.1-13-g76f9b8d+898e48ea30,22.0.1-16-g996ca242+4fc81a064e,22.0.1-18-gb17765a+beb62377fa,22.0.1-22-gf1d71818e+ba3de87e18,22.0.1-3-g0503b2e+6b209d634c,22.0.1-3-g7aa11f2+898e48ea30,22.0.1-3-g8c1d971+02ffdaf10e,22.0.1-3-g997b569+4b50d39821,22.0.1-4-g1930a60+782b3b5ca8,22.0.1-6-g873942f+6bd0a64aa5,22.0.1-6-ga02864e+782b3b5ca8,22.0.1-7-g65f59fa+370747663e,22.0.1-8-gb3b32c1+de2e524845,22.0.1-9-geb3bca9+6ee13701cd,master-gcc5351303a+d4689d920e
LSST Data Management Base Package
__init__.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 #
4 # This product includes software developed by the
5 # LSST Project (http://www.lsst.org/).
6 # See the COPYRIGHT file
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <https://www.lsstcorp.org/LegalNotices/>.
21 #
22 
23 # C++ wrapper
24 # hoist symbols lsst.ip.diffim.detail up into lsst.ip.diffim
25 from .diffimLib import *
26 
27 # Python code
28 from .dcrModel import *
29 from .psfMatch import *
30 from .imagePsfMatch import *
31 from .modelPsfMatch import *
32 from .snapPsfMatch import *
33 from .diaSourceAnalysis import *
34 from .makeKernelBasisList import *
35 from .diaCatalogSourceSelector import *
36 from .dipoleMeasurement import *
37 from .diffimTools import *
38 from .kernelCandidateQa import *
39 from .getTemplate import *
40 from .diaCatalogSourceSelector import *
41 from lsst.meas.base import wrapSimpleAlgorithm
42 from .dipoleFitTask import *
43 from .imageDecorrelation import *
44 from .imageMapReduce import *
45 from .zogy import *
46 from .version import *
47 
48 # automatically register ip_diffim Algorithms
49 wrapSimpleAlgorithm(NaiveDipoleCentroid, Control=DipoleCentroidControl, executionOrder=0.0)
50 wrapSimpleAlgorithm(NaiveDipoleFlux, Control=DipoleFluxControl, executionOrder=2.0)
51 wrapSimpleAlgorithm(PsfDipoleFlux, Control=PsfDipoleFluxControl, executionOrder=2.0)
52 
def wrapSimpleAlgorithm(AlgClass, executionOrder, name=None, needsMetadata=False, hasMeasureN=False, hasLogName=False, **kwds)
Definition: wrappers.py:380