Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04dff08e69+42feea4ef2,g0fba68d861+a0b9de4ea6,g1ec0fe41b4+f536777771,g1fd858c14a+42269675ea,g35bb328faa+fcb1d3bbc8,g4af146b050+bbef1ba6f0,g4d2262a081+8f21adb3a6,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+43e3f0d37c,g6273192d42+e9a7147bac,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g7bbe65ff3e+43e3f0d37c,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+43704db330,g8852436030+eb2388797a,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+43e3f0d37c,g989de1cb63+4086c0989b,g9d31334357+43e3f0d37c,g9f33ca652e+9b312035f9,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+61f2793e68,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+834c1753f9,gcf25f946ba+eb2388797a,gd6cbbdb0b4+af3c3595f5,gde0f65d7ad+9e0145b227,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+37a5db1cfd,gf67bdafdda+4086c0989b,v29.0.0.rc7
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
shapeprior.h
Go to the documentation of this file.
1#ifndef LSST_GAUSS2D_FIT_SHAPEPRIOR_H
2#define LSST_GAUSS2D_FIT_SHAPEPRIOR_H
3
4#include <memory>
5
7
8#include "parametricellipse.h"
10#include "prior.h"
11#include "transforms.h"
12
13namespace lsst::gauss2d::fit {
14
18class ShapePriorOptions : public Object {
19public:
20 static inline const double delta_jacobian_default = 1e-5;
21 static inline const double size_maj_floor_default = 1e-3;
22 static inline const double axrat_floor_default = 1e-3;
23
31 explicit ShapePriorOptions(double delta_jacobian = delta_jacobian_default,
32 double size_maj_floor = size_maj_floor_default,
33 double axrat_floor = axrat_floor_default);
34
35 bool check_delta_jacobian(double delta_jacobian, bool do_throw = false);
36 bool check_size_maj_floor(double size_maj_floor, bool do_throw = false);
37 bool check_axrat_floor(double axrat_floor, bool do_throw = false);
38
39 double get_delta_jacobian() const;
40 double get_size_maj_floor() const;
41 double get_axrat_floor() const;
42
43 void set_delta_jacobian(double delta_jacobian);
44 void set_size_maj_floor(double size_maj_floor);
45 void set_axrat_floor(double axrat_floor);
46
47 std::string repr(bool name_keywords = false,
48 std::string_view namespace_separator = Object::CC_NAMESPACE_SEPARATOR) const override;
49 std::string str() const override;
50
51private:
52 double _delta_jacobian;
53 double _size_maj_floor;
54 double _axrat_floor;
55};
56
63class ShapePrior : public Prior {
64public:
73 std::shared_ptr<ParametricGaussian1D> prior_size = nullptr,
74 std::shared_ptr<ParametricGaussian1D> prior_axrat = nullptr,
77
78 PriorEvaluation evaluate(bool calc_jacobians = false, bool normalize_loglike = false) const override;
79
82
84
87
88 size_t size() const override;
89
90 std::string repr(bool name_keywords = false,
91 std::string_view namespace_separator = Object::CC_NAMESPACE_SEPARATOR) const override;
92 std::string str() const override;
93
94private:
99};
100} // namespace lsst::gauss2d::fit
101
102#endif
A generic object from the gauss2d library.
Definition object.h:40
static constexpr std::string_view CC_NAMESPACE_SEPARATOR
The C++ namespace separator.
Definition object.h:45
Results from the evaluation of a prior probability function.
Definition prior.h:16
Interface for a prior probability function.
Definition prior.h:38
std::string repr(bool name_keywords=false, std::string_view namespace_separator=Object::CC_NAMESPACE_SEPARATOR) const override
Return a full, callable string representation of this.
size_t size() const override
PriorEvaluation evaluate(bool calc_jacobians=false, bool normalize_loglike=false) const override
Evaluate the log likelihood and residual-dependent terms.
std::string str() const override
Return a brief, human-readable string representation of this.
std::shared_ptr< ParametricGaussian1D > get_prior_axrat() const
ShapePrior(std::shared_ptr< const ParametricEllipse > ellipse, std::shared_ptr< ParametricGaussian1D > prior_size=nullptr, std::shared_ptr< ParametricGaussian1D > prior_axrat=nullptr, std::shared_ptr< ShapePriorOptions > options=nullptr)
Construct a ShapePrior from a Parameter and mean_size/std.
void set_prior_size(std::shared_ptr< ParametricGaussian1D > prior_size)
std::shared_ptr< ParametricGaussian1D > get_prior_size() const
std::vector< double > get_loglike_const_terms() const override
Return the constant terms of the log likelihood (dependent on stddevs only)
void set_prior_axrat(std::shared_ptr< ParametricGaussian1D > prior_axrat)
static const double delta_jacobian_default
Definition shapeprior.h:20
void set_size_maj_floor(double size_maj_floor)
Definition shapeprior.cc:86
bool check_axrat_floor(double axrat_floor, bool do_throw=false)
Definition shapeprior.cc:64
bool check_size_maj_floor(double size_maj_floor, bool do_throw=false)
Definition shapeprior.cc:53
static const double size_maj_floor_default
Definition shapeprior.h:21
std::string str() const override
Return a brief, human-readable string representation of this.
void set_delta_jacobian(double delta_jacobian)
Definition shapeprior.cc:81
void set_axrat_floor(double axrat_floor)
Definition shapeprior.cc:91
ShapePriorOptions(double delta_jacobian=delta_jacobian_default, double size_maj_floor=size_maj_floor_default, double axrat_floor=axrat_floor_default)
Construct a ShapePriorOptions from values.
Definition shapeprior.cc:35
bool check_delta_jacobian(double delta_jacobian, bool do_throw=false)
Definition shapeprior.cc:42
std::string repr(bool name_keywords=false, std::string_view namespace_separator=Object::CC_NAMESPACE_SEPARATOR) const override
Return a full, callable string representation of this.
Definition shapeprior.cc:96
static const double axrat_floor_default
Definition shapeprior.h:22