|
LSST Applications g00d0e8bbd7+edbf708997,g03191d30f7+9ce8016dbd,g1955dfad08+0bd186d245,g199a45376c+5137f08352,g1fd858c14a+a888a50aa2,g262e1987ae+45f9aba685,g29ae962dfc+1c7d47a24f,g2cef7863aa+73c82f25e4,g35bb328faa+edbf708997,g3fd5ace14f+eed17d2c67,g47891489e3+6dc8069a4c,g53246c7159+edbf708997,g64539dfbff+c4107e45b5,g67b6fd64d1+6dc8069a4c,g74acd417e5+f452e9c21a,g786e29fd12+af89c03590,g7ae74a0b1c+a25e60b391,g7aefaa3e3d+2025e9ce17,g7cc15d900a+2d158402f9,g87389fa792+a4172ec7da,g89139ef638+6dc8069a4c,g8d4809ba88+c4107e45b5,g8d7436a09f+e96c132b44,g8ea07a8fe4+db21c37724,g98df359435+aae6d409c1,ga2180abaac+edbf708997,gac66b60396+966efe6077,gb632fb1845+88945a90f8,gbaa8f7a6c5+38b34f4976,gbf99507273+edbf708997,gca7fc764a6+6dc8069a4c,gd7ef33dd92+6dc8069a4c,gda68eeecaf+7d1e613a8d,gdab6d2f7ff+f452e9c21a,gdbb4c4dda9+c4107e45b5,ge410e46f29+6dc8069a4c,ge41e95a9f2+c4107e45b5,geaed405ab2+e194be0d2b,w.2025.47
LSST Data Management Base Package
|
Classes | |
| class | GradientsExtra |
| struct | Terms |
| class | TermsGradient |
| struct | TermsMoments |
| class | TermsPixel |
| Storage for terms common to Gaussians for a single pixel. More... | |
| struct | ValuesGauss |
Typedefs | |
| typedef std::vector< double > | vecd |
| typedef std::unique_ptr< vecd > | vecdptr |
| typedef std::array< double, N_PARAMS_GAUSS2D > | Weights |
| typedef std::vector< TermsPixel > | TermsPixelVec |
| typedef std::vector< TermsGradient > | TermsGradientVec |
| using | type_name_prober = void |
Functions | |
| TermsMoments | gaussian_pixel_x_xx (const double cen_x, const double x_min, const double bin_x, const unsigned int dim_x, const double xx_weight, const double xy_weight) |
| Terms | terms_from_covar (double weight, const Ellipse &ell) |
| template<class Data> | |
| void | gaussian_pixel (Data &image, const double weight, const double cen_x, const double cen_y, const double xx_weight, const double yy_weight, const double xy_weight) |
| void | gaussian_pixel_get_jacobian (ValuesGauss &out, const double m, const double m_unweight, const double xmc_norm, const double ymc_weighted, const double xmc, const double ymc, const double norms_yy, const double xmc_t_xy_factor, const double sig_x_inv, const double sig_y_inv, const double xy_norm, const double xx_norm, const double yy_weighted, const double rho_div_one_m_rhosq, const double norms_xy_div_rho, const double dsig_x_conv_src=1, const double dsig_y_conv_src=1, const double drho_c_dsig_x_src=0, const double drho_c_dsig_y_src=0, const double drho_c_drho_s=1) |
| void | gaussian_pixel_get_jacobian_from_terms (ValuesGauss &out, const size_t dim1, const TermsPixel &terms_pixel, const TermsGradient &terms_grad, double m, double m_unweighted, double xy_norm) |
| template<typename t> | |
| void | gaussian_pixel_add_values (t &cen_x, t &cen_y, t &L, t &sig_x, t &sig_y, t &rho, const ValuesGauss &values, const t weight_cen_x=1, const t weight_cen_y=1, const t weight_L=1, const t weight_sig_x=1, const t weight_sig_y=1, const t weight_rho=1) |
| template<typename t, class Data, class Indices, bool do_extra> | |
| void | gaussians_pixel_add_like_grad (Image< t, Data > *output, const Image< idx_type, Indices > &grad_param_map, const Image< t, Data > &grad_param_factor, const size_t N_GAUSS, const std::vector< Weights > &gaussweights, double &chi_pix, double &loglike, const double model, double data, double sigma_inv, unsigned int dim1, unsigned int dim2, const TermsPixelVec &terms_pixel, const TermsGradientVec &terms_grad, ValuesGauss &gradients, const std::shared_ptr< const Image< idx_type, Indices > > extra_param_map, const std::shared_ptr< const Image< t, Data > > extra_param_factor) |
| template<typename T, class Data, class Indices, GradientType gradient_type, bool do_extra> | |
| T | gaussian_pixel_add_all (size_t g, size_t j, size_t i, double weight, double sigma_inv, const TermsPixelVec &terms_pixel_vec, ImageArray< T, Data > &output_jac_ref, const Image< idx_type, Indices > &grad_param_map, const Image< T, Data > &grad_param_factor, std::vector< Weights > &gradweights, const TermsGradientVec &terms_grad_vec, ValuesGauss &gradients, GradientsExtra< T, Data, Indices > *grad_extra) |
| template<typename Indices> | |
| const std::shared_ptr< const Indices > | _param_map_default (size_t n_gaussians, size_t n_params=N_PARAMS_GAUSS2D, size_t increment=1) |
| template<typename Data> | |
| const std::shared_ptr< const Data > | _param_factor_default (size_t n_gaussians, size_t n_params=N_PARAMS_GAUSS2D, double value=1.) |
| template<typename T> | |
| constexpr std::string_view | wrapped_type_name () |
| constexpr std::size_t | wrapped_type_name_prefix_length () |
| constexpr std::size_t | wrapped_type_name_suffix_length () |
Variables | |
| constexpr std::string_view | NAMESPACE_SEPARATOR = "::" |
Definition at line 327 of file evaluate.h.
Definition at line 229 of file evaluate.h.
| using lsst::gauss2d::detail::type_name_prober = void |
Definition at line 47 of file type_name.h.
| typedef std::vector<double> lsst::gauss2d::detail::vecd |
Definition at line 65 of file evaluate.h.
Definition at line 66 of file evaluate.h.
| typedef std::array<double, N_PARAMS_GAUSS2D> lsst::gauss2d::detail::Weights |
Definition at line 179 of file evaluate.h.
| const std::shared_ptr< const Data > lsst::gauss2d::detail::_param_factor_default | ( | size_t | n_gaussians, |
| size_t | n_params = N_PARAMS_GAUSS2D, | ||
| double | value = 1. ) |
Definition at line 644 of file evaluate.h.
| const std::shared_ptr< const Indices > lsst::gauss2d::detail::_param_map_default | ( | size_t | n_gaussians, |
| size_t | n_params = N_PARAMS_GAUSS2D, | ||
| size_t | increment = 1 ) |
Definition at line 629 of file evaluate.h.
|
inline |
Definition at line 407 of file evaluate.h.
|
inline |
Definition at line 592 of file evaluate.h.
|
inline |
|
inline |
Definition at line 495 of file evaluate.h.
|
inline |
Definition at line 519 of file evaluate.h.
|
inline |
Definition at line 83 of file evaluate.h.
|
inline |
Definition at line 548 of file evaluate.h.
Definition at line 30 of file evaluate.cc.
|
constexpr |
Definition at line 50 of file type_name.h.
|
constexpr |
Definition at line 62 of file type_name.h.
|
constexpr |
Definition at line 66 of file type_name.h.
|
constexpr |
Definition at line 71 of file type_name.h.