|
lsst.gauss2d.fit g199a45376c+7362695278
|
#include <ellipticalcomponent.h>
Public Member Functions | |
| EllipticalComponent (std::shared_ptr< ParametricEllipse > ellipse, std::shared_ptr< CentroidParameters > centroid=nullptr, std::shared_ptr< IntegralModel > integralmodel=nullptr) | |
| const CentroidParameters & | get_centroid () const |
| Get the centroid Parameter container. | |
| const ParametricEllipse & | get_ellipse () const |
| Get the ellipse Parameter container. | |
| const IntegralModel & | get_integralmodel () const override |
| ParamRefs & | get_parameters (ParamRefs ¶ms, ParamFilter *filter=nullptr) const override |
| ParamCRefs & | get_parameters_const (ParamCRefs ¶ms, ParamFilter *filter=nullptr) const override |
| Same as get_parameters(), but for const refs. | |
| std::string | repr (bool name_keywords=false, std::string_view namespace_separator=Object::CC_NAMESPACE_SEPARATOR) const override |
| std::string | str () const override |
| Public Member Functions inherited from lsst::gauss2d::fit::ParametricModel | |
| virtual void | add_extra_param_map (const Channel &channel, ExtraParamMap &map_extra, const GradParamMap &map_grad, ParameterMap &offsets) const =0 |
| virtual void | add_extra_param_factors (const Channel &channel, ExtraParamFactors &factors) const =0 |
| virtual void | add_grad_param_map (const Channel &channel, GradParamMap &map, ParameterMap &offsets) const =0 |
| virtual void | add_grad_param_factors (const Channel &channel, GradParamFactors &factors) const =0 |
| virtual void | set_extra_param_factors (const Channel &channel, ExtraParamFactors &factors, size_t index) const =0 |
| virtual void | set_grad_param_factors (const Channel &channel, GradParamFactors &factors, size_t index) const =0 |
| virtual std::unique_ptr< const lsst::gauss2d::Gaussians > | get_gaussians (const Channel &channel) const =0 |
| virtual size_t | get_n_gaussians (const Channel &channel) const =0 |
| Return the number of Gaussian sub-components controlled by this model. | |
| Public Member Functions inherited from lsst::gauss2d::fit::Parametric | |
| ParamRefs | get_parameters_new (ParamFilter *filter=nullptr) const |
| Same as get_parameters(), but returning a new vector. | |
| ParamCRefs | get_parameters_const_new (ParamFilter *filter=nullptr) const |
| Same as get_parameters_const(), but returning a new vector. | |
Protected Attributes | |
| std::shared_ptr< ParametricEllipse > | _ellipse |
| std::shared_ptr< CentroidParameters > | _centroid |
| std::shared_ptr< IntegralModel > | _integralmodel |
A Component with an elliptically-symmetric intensity profile.
|
explicit |
Construct an EllipticalComponent from Parameter containers
| ellipse | The ellipse Parameter container |
| centroid | The centroid Parameter container; default-constructed if null |
| integralmodel | The IntegralModel; default-constructed if null |
|
overridevirtual |
Implements lsst::gauss2d::fit::Component.
|
overridevirtual |
Add Parameter refs matching the filter to a vector, in order.
| params | The vector to add to. |
| filter | The filter to apply to this Object's parameters. |
Implements lsst::gauss2d::fit::Parametric.
Reimplemented in lsst::gauss2d::fit::GaussianComponent, and lsst::gauss2d::fit::SersicMixComponent.
|
overridevirtual |
Same as get_parameters(), but for const refs.
Implements lsst::gauss2d::fit::Parametric.
Reimplemented in lsst::gauss2d::fit::GaussianComponent, and lsst::gauss2d::fit::SersicMixComponent.