LSST Applications g0fba68d861+6458b4b1e8,g1a2d93ecc5+3e35aee8cd,g1ec0fe41b4+f0b7a83aa5,g1fd858c14a+9217109c9b,g2440f9efcc+8c5ae1fdc5,g2f70e09751+3e35aee8cd,g3533f9d6cb+3e35aee8cd,g35bb328faa+8c5ae1fdc5,g3fc7d4f5b9+6f852f4d47,g4178042926+4fc193a829,g47a4e590b3+0338a2adf7,g53246c7159+8c5ae1fdc5,g60b5630c4e+3e35aee8cd,g67b6fd64d1+00d1772970,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g821393dcaa+5b6744d273,g8352419a5c+8c5ae1fdc5,g8852436030+2de96b8b0e,g89139ef638+00d1772970,g8a4a211aed+67685715df,g93ded990ae+876f2a5123,g989de1cb63+00d1772970,g9f33ca652e+9d78424bfe,gabe3b4be73+8856018cbb,gabf8522325+5cb9e9d408,gb1101e3267+f039f14a39,gb89ab40317+00d1772970,gcf25f946ba+2de96b8b0e,gd6cbbdb0b4+be834e5da7,gde0f65d7ad+62d25668e4,gdf97c34603+2ea15af915,ge278dab8ac+fa35eb453c,ge410e46f29+00d1772970,gf35d7ec915+97dd712d81,gf52ea2f1b2+42ba748719,gf5e32f922b+8c5ae1fdc5,gf67bdafdda+00d1772970,w.2025.22
LSST Data Management Base Package
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1#
2# LSST Data Management System
3# Copyright 2008-2016 AURA/LSST.
4#
5# This product includes software developed by the
6# LSST Project (http://www.lsst.org/).
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 <http://www.lsstcorp.org/LegalNotices/>.
21#
22
23from lsst.meas.base import BasePlugin, wrapSimpleAlgorithm
24from .photometryKron import KronFluxAlgorithm, KronFluxControl, KronAperture
25
26__all__ = ["KronFluxAlgorithm", "KronFluxControl", "KronAperture", "KronFluxPlugin", "KronFluxForcedPlugin"]
27
28KronFluxPlugin, KronFluxForcedPlugin = wrapSimpleAlgorithm(
29 KronFluxAlgorithm,
30 name = "ext_photometryKron_KronFlux",
31 Control = KronFluxControl,
32 executionOrder = BasePlugin.FLUX_ORDER,
33 shouldApCorr = True,
34 needsMetadata = True,
35)
36
37from .version import *