Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+83433b07ee,g16d25e1f1b+23bc9e47ac,g1ec0fe41b4+3ea9d11450,g1fd858c14a+9be2b0f3b9,g2440f9efcc+8c5ae1fdc5,g35bb328faa+8c5ae1fdc5,g4a4af6cd76+d25431c27e,g4d2262a081+c74e83464e,g53246c7159+8c5ae1fdc5,g55585698de+1e04e59700,g56a49b3a55+92a7603e7a,g60b5630c4e+1e04e59700,g67b6fd64d1+3fc8cb0b9e,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g8352419a5c+8c5ae1fdc5,g8852436030+60e38ee5ff,g89139ef638+3fc8cb0b9e,g94187f82dc+1e04e59700,g989de1cb63+3fc8cb0b9e,g9d31334357+1e04e59700,g9f33ca652e+0a83e03614,gabe3b4be73+8856018cbb,gabf8522325+977d9fabaf,gb1101e3267+8b4b9c8ed7,gb89ab40317+3fc8cb0b9e,gc0af124501+57ccba3ad1,gcf25f946ba+60e38ee5ff,gd6cbbdb0b4+1cc2750d2e,gd794735e4e+7be992507c,gdb1c4ca869+be65c9c1d7,gde0f65d7ad+c7f52e58fe,ge278dab8ac+6b863515ed,ge410e46f29+3fc8cb0b9e,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf618743f1b+747388abfa,gf67bdafdda+3fc8cb0b9e,w.2025.18
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GeneralPsfFitter.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2/*
3 * LSST Data Management System
4 * Copyright 2008-2013 LSST Corporation.
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 <http://www.lsstcorp.org/LegalNotices/>.
22 */
23
24#ifndef LSST_MEAS_MODELFIT_GeneralPsfFitter_h_INCLUDED
25#define LSST_MEAS_MODELFIT_GeneralPsfFitter_h_INCLUDED
26
27#include <memory>
28
29#include "lsst/pex/config.h"
34#include "lsst/geom.h"
35#include "lsst/afw/geom.h"
40
41namespace lsst { namespace meas { namespace modelfit {
42
47public:
48
49 GeneralPsfFitterComponentControl(int order_=0, double radiusFactor_=1.0) :
51 radiusFactor(radiusFactor_), radiusPriorSigma(0.5)
52 {}
53
55 order, int,
56 "shapelet order for this component; negative to disable this component completely"
57 );
59 positionPriorSigma, double,
60 "sigma (in pixels) in an isotropic 2-d Gaussian prior on the center of this shapelet component, "
61 "relative to the center of the PSF image"
62 );
65 "sigma in an isotropic 2-d Gaussian prior on the conformal-shear ellipticity eta"
66 );
68 radiusFactor, double,
69 "Sets the fiducial radius of this component relative to the 'primary radius' of the PSF: either "
70 "the second-moments radius of the PSF image (in an initial fit), or the radius of the primary "
71 "component in a previous fit. Ignored if the previous fit included this component (as then we "
72 "can just use that radius)."
73 );
75 radiusPriorSigma, double,
76 "sigma in a Gaussian prior on ln(radius/fiducialRadius)"
77 );
78
79};
80
90public:
91
93 inner(-1, 0.5), primary(0, 1.0), wings(0, 2.0), outer(-1, 4.0), defaultNoiseSigma(0.001)
94 {}
95
98 "Innermost shapelet expansion, used to fit PSFs with very sharp cores"
99 );
100
103 "Primary shapelet expansion, typically used to fit the bulk of the PSF "
104 );
105
108 "Wing shapelet expansion (between primary and outer), typically used to fit the wings of the PSF"
109 );
110
113 "Outermost shapelet expansion, used to fit PSFs with very broad wings"
114 );
115
118 "Configuration of the optimizer used to do the fitting"
119 );
120
122 defaultNoiseSigma, double, "Default value for the noiseSigma parameter in GeneralPsfFitter.apply()"
123 );
124
125};
126
149public:
152
162 afw::table::Schema & schema,
163 std::string const & prefix
164 ) const;
165
174 std::shared_ptr<Model> getModel() const { return _model; }
175
182 std::shared_ptr<Prior> getPrior() const { return _prior; }
183
197 shapelet::MultiShapeletFunction const & previousFit,
198 std::shared_ptr<Model> previousModel
199 ) const;
200
202
217 afw::geom::ellipses::Quadrupole const & moments,
218 Scalar noiseSigma=-1,
219 int * pState = nullptr
220 ) const;
223 afw::geom::ellipses::Quadrupole const & moments,
224 Scalar noiseSigma=-1,
225 int * pState = nullptr
226 ) const {
227 return apply(afw::image::Image<float>(image, true), moments, noiseSigma, pState);
228 }
229
230
232
247 shapelet::MultiShapeletFunction const & initial,
248 Scalar noiseSigma=-1,
249 int * pState = nullptr
250 ) const;
253 shapelet::MultiShapeletFunction const & initial,
254 Scalar noiseSigma=-1,
255 int * pState = nullptr
256 ) const {
257 return apply(afw::image::Image<float>(image, true), initial, noiseSigma);
258 }
259
260
261private:
265};
266
268public:
269
270 // Structures and routines to manage flaghandler
277
279
281 afw::table::Schema & schema,
282 std::string const & prefix
283 );
284
286 return _key;
287 }
288
290 afw::table::SourceRecord & measRecord,
292 shapelet::MultiShapeletFunction const & initial
293 ) const;
294
296 afw::table::SourceRecord & measRecord,
298 afw::geom::ellipses::Quadrupole const & moments
299 ) const;
300
301 void fail(
302 afw::table::SourceRecord & measRecord,
304 ) const;
305
306private:
309};
310
316public:
317
319 ndarray::Array<Pixel const,2,1> const & image,
320 geom::Point2I const & xy0,
322 Scalar sigma,
323 ndarray::Array<Scalar const,1,1> const & fixed
324 );
325
327 ndarray::Array<Pixel,2,-1> const & modelMatrix,
328 ndarray::Array<Scalar const,1,1> const & nonlinear,
329 bool doApplyWeights=true
330 ) const override;
331
333
334private:
335 class Impl;
337};
338
339}}} // namespace lsst::meas::modelfit
340
341#endif // !LSST_MEAS_MODELFIT_GeneralPsfFitter_h_INCLUDED
An ellipse core with quadrupole moments as parameters.
Definition Quadrupole.h:47
A class to represent a 2-dimensional array of pixels.
Definition Image.h:51
Defines the fields and offsets for a table.
Definition Schema.h:51
Record class that contains measurements made on a single exposure.
Definition Source.h:78
vector-type utility class to build a collection of FlagDefinitions
Definition FlagHandler.h:60
Utility class for handling flag fields that indicate the failure modes of an algorithm.
Exception to be thrown when a measurement algorithm experiences a known failure mode.
Definition exceptions.h:48
static base::FlagDefinition const EXCEPTION
void fail(afw::table::SourceRecord &measRecord, lsst::meas::base::MeasurementError *error=nullptr) const
shapelet::MultiShapeletFunctionKey getKey()
void measure(afw::table::SourceRecord &measRecord, afw::image::Image< double > const &image, afw::geom::ellipses::Quadrupole const &moments) const
static base::FlagDefinition const MAX_INNER_ITERATIONS
void measure(afw::table::SourceRecord &measRecord, afw::image::Image< double > const &image, shapelet::MultiShapeletFunction const &initial) const
static base::FlagDefinitionList const & getFlagDefinitions()
GeneralPsfFitterAlgorithm(GeneralPsfFitterControl const &ctrl, afw::table::Schema &schema, std::string const &prefix)
static base::FlagDefinition const FAILURE
static base::FlagDefinition const MAX_OUTER_ITERATIONS
static base::FlagDefinition const CONTAINS_NAN
Control object used to define one piece of multishapelet fit to a PSF model; see GeneralPsfFitterCont...
double positionPriorSigma
"sigma (in pixels) in an isotropic 2-d Gaussian prior on the center of this shapelet component,...
GeneralPsfFitterComponentControl(int order_=0, double radiusFactor_=1.0)
double ellipticityPriorSigma
"sigma in an isotropic 2-d Gaussian prior on the conformal-shear ellipticity eta" ;
int order
"shapelet order for this component; negative to disable this component completely" ;
double radiusFactor
"Sets the fiducial radius of this component relative to the 'primary radius' of the PSF: either " "th...
double radiusPriorSigma
"sigma in a Gaussian prior on ln(radius/fiducialRadius)" ;
Control object used to configure a multishapelet fit to a PSF model; see GeneralPsfFitter.
GeneralPsfFitterComponentControl primary
"Primary shapelet expansion, typically used to fit the bulk of the PSF " ;
double defaultNoiseSigma
"Default value for the noiseSigma parameter in GeneralPsfFitter.apply()" ;
GeneralPsfFitterComponentControl inner
"Innermost shapelet expansion, used to fit PSFs with very sharp cores" ;
GeneralPsfFitterComponentControl wings
"Wing shapelet expansion (between primary and outer), typically used to fit the wings of the PSF" ;
OptimizerControl optimizer
"Configuration of the optimizer used to do the fitting" ;
GeneralPsfFitterComponentControl outer
"Outermost shapelet expansion, used to fit PSFs with very broad wings" ;
shapelet::MultiShapeletFunctionKey addFields(afw::table::Schema &schema, std::string const &prefix) const
Add fields to a Schema that can be used to store the MultiShapeletFunction returned by apply().
shapelet::MultiShapeletFunction apply(afw::image::Image< double > const &image, shapelet::MultiShapeletFunction const &initial, Scalar noiseSigma=-1, int *pState=nullptr) const
GeneralPsfFitter(GeneralPsfFitterControl const &ctrl)
Initialize the fitter class with the given control object.
shapelet::MultiShapeletFunction apply(afw::image::Image< Pixel > const &image, shapelet::MultiShapeletFunction const &initial, Scalar noiseSigma=-1, int *pState=nullptr) const
Perform a fit to a PSF image, using a previous fit as a starting point.
std::shared_ptr< Prior > getPrior() const
Return the Prior object that corresponds to the configuration.
shapelet::MultiShapeletFunction apply(afw::image::Image< Pixel > const &image, afw::geom::ellipses::Quadrupole const &moments, Scalar noiseSigma=-1, int *pState=nullptr) const
Perform an initial fit to a PSF image.
shapelet::MultiShapeletFunction adapt(shapelet::MultiShapeletFunction const &previousFit, std::shared_ptr< Model > previousModel) const
Adapt a differently-configured previous fit to be used as an starting point for this GeneralPsfFitter...
shapelet::MultiShapeletFunction apply(afw::image::Image< double > const &image, afw::geom::ellipses::Quadrupole const &moments, Scalar noiseSigma=-1, int *pState=nullptr) const
std::shared_ptr< Model > getModel() const
Return the Model object that corresponds to the configuration.
Likelihood(const Likelihood &)=delete
void computeModelMatrix(ndarray::Array< Pixel, 2,-1 > const &modelMatrix, ndarray::Array< Scalar const, 1, 1 > const &nonlinear, bool doApplyWeights=true) const override
Evaluate the model for the given vector of nonlinear parameters.
MultiShapeletPsfLikelihood(ndarray::Array< Pixel const, 2, 1 > const &image, geom::Point2I const &xy0, std::shared_ptr< Model > model, Scalar sigma, ndarray::Array< Scalar const, 1, 1 > const &fixed)
Configuration object for Optimizer.
Definition optimizer.h:187
A multi-scale shapelet function.
Class that maps MultiShapeletFunction objects to fields in afw::table objects.
#define LSST_NESTED_CONTROL_FIELD(NAME, MODULE, TYPE, DOC)
A preprocessor macro used to define fields in C++ "control object" structs, for nested control object...
Definition config.h:69
#define LSST_CONTROL_FIELD(NAME, TYPE, DOC)
A preprocessor macro used to define fields in C++ "control object" structs.
Definition config.h:43
Point< int, 2 > Point2I
Definition Point.h:321
double Scalar
Typedefs to be used for probability and parameter values.
Definition common.h:44
Simple class used to define and document flags The name and doc constitute the identity of the FlagDe...
Definition FlagHandler.h:40