LSST Applications g1653933729+a8ce1bb630,g1a997c3884+a8ce1bb630,g28da252d5a+d15de4ab0d,g2bbee38e9b+97aa061eef,g2bc492864f+97aa061eef,g2cdde0e794+3ad5f2bb52,g3156d2b45e+07302053f8,g347aa1857d+97aa061eef,g35bb328faa+a8ce1bb630,g3a166c0a6a+97aa061eef,g3e281a1b8c+693a468c5f,g4005a62e65+17cd334064,g414038480c+56e3b84a79,g41af890bb2+1c23cd8dc6,g4e1a3235cc+346d8468f1,g6249c6f860+0f10df03c7,g80478fca09+469ce5f220,g82479be7b0+90e3dadc5b,g858d7b2824+e7f795e3fb,g9125e01d80+a8ce1bb630,g923454667a+e7f795e3fb,ga5288a1d22+d13454dda5,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+97aa061eef,gcf0d15dbbd+874ca8ec09,gd6b7c0dfd1+d9d51876e5,gda3e153d99+e7f795e3fb,gda6a2b7d83+874ca8ec09,gdaeeff99f8+1711a396fd,gdd5a9049c5+40baf9de4f,ge2409df99d+634e70b004,ge33fd446bb+e7f795e3fb,ge79ae78c31+97aa061eef,gf0baf85859+5daf287408,gf5289d68f6+f8c5105d69,gfa443fc69c+1babd4a8ba,gfda6b12a05+3bcad770a9,w.2024.41
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
lsst::gauss2d::fit::Source Class Reference

An association of physically-related Component instances. More...

#include <source.h>

Inheritance diagram for lsst::gauss2d::fit::Source:
lsst::gauss2d::fit::ComponentMixture lsst::gauss2d::fit::ParametricModel lsst::gauss2d::fit::Parametric lsst::gauss2d::Object

Public Member Functions

 Source (Components &components)
 
void add_extra_param_map (const Channel &channel, ExtraParamMap &map_extra, const GradParamMap &map_grad, ParameterMap &offsets) const override
 Add extra Parameter indices to a map.
 
void add_extra_param_factors (const Channel &channel, ExtraParamFactors &factors) const override
 Add extra Parameter gradient factors to an existing vector.
 
void add_grad_param_map (const Channel &channel, GradParamMap &map, ParameterMap &offsets) const override
 Add Parameter gradient indices to an existing map.
 
void add_grad_param_factors (const Channel &channel, GradParamFactors &factors) const override
 Add Parameter gradient factors to an existing map.
 
Components get_components () const override
 
std::unique_ptr< const lsst::gauss2d::Gaussiansget_gaussians (const Channel &channel) const override
 Return the vector of Gaussian sub-components controlled by this model.
 
size_t get_n_gaussians (const Channel &channel) const override
 Return the number of Gaussian sub-components controlled by this model.
 
ParamRefsget_parameters (ParamRefs &params, ParamFilter *filter=nullptr) const override
 Add Parameter refs matching the filter to a vector, in order.
 
ParamCRefsget_parameters_const (ParamCRefs &params, ParamFilter *filter=nullptr) const override
 Same as get_parameters(), but for const refs.
 
void set_extra_param_factors (const Channel &channel, ExtraParamFactors &factors, size_t index) const override
 Set extra Parameter gradient factors in an existing map.
 
void set_grad_param_factors (const Channel &channel, GradParamFactors &factors, size_t index) const override
 Set Parameter gradient factors in an existing map.
 
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.
 
std::string str () const override
 Return a brief, human-readable string representation of this.
 
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.
 

Static Public Member Functions

static std::string_view null_str (const std::string_view &namespace_separator)
 

Static Public Attributes

static constexpr std::string_view CC_NAMESPACE_SEPARATOR = "::"
 The C++ namespace separator.
 
static constexpr std::string_view NULL_STR_GENERAL = "None"
 
static constexpr std::string_view PY_NAMESPACE_SEPARATOR = "."
 

Detailed Description

An association of physically-related Component instances.

A Source is primarily intended to be a single object represented by Component instances with common centroids. However, users may link whatever Components they like into a Source.

Source objects should not share Components if they are part of the same Model, but this is not enforced.

Definition at line 22 of file source.h.

Constructor & Destructor Documentation

◆ Source()

lsst::gauss2d::fit::Source::Source ( Components & components)
explicit

Definition at line 9 of file source.cc.

9 {
10 _components.reserve(components.size());
11 size_t i = 0;
12 for (auto& component : components) {
13 if (component == nullptr)
14 throw std::invalid_argument("Source components[" + std::to_string(i) + "] can't be null");
15 _components.push_back(std::move(component));
16 i++;
17 }
18}
table::Key< table::Array< int > > components
T move(T... args)
T push_back(T... args)
T reserve(T... args)
T to_string(T... args)

Member Function Documentation

◆ add_extra_param_factors()

void lsst::gauss2d::fit::Source::add_extra_param_factors ( const Channel & channel,
ExtraParamFactors & factors ) const
overridevirtual

Add extra Parameter gradient factors to an existing vector.

Parameters
channelThe Channel to add factors for.
factorsThe ExtraParamFactors to add to.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 25 of file source.cc.

25 {
26 for (auto& component : _components) component->add_extra_param_factors(channel, factors);
27}
void add_extra_param_factors(const Channel &channel, ExtraParamFactors &factors) const override
Add extra Parameter gradient factors to an existing vector.
Definition source.cc:25

◆ add_extra_param_map()

void lsst::gauss2d::fit::Source::add_extra_param_map ( const Channel & channel,
ExtraParamMap & map_extra,
const GradParamMap & map_grad,
ParameterMap & offsets ) const
overridevirtual

Add extra Parameter indices to a map.

Parameters
channelThe Channel to add indices for.
map_extraThe ExtraParamMap to add to.
map_gradThe completed GradParamMap.
offsetsA map of index offsets for Parameters that have already been added.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 20 of file source.cc.

21 {
22 for (auto& component : _components) component->add_extra_param_map(channel, map_extra, map_grad, offsets);
23}
void add_extra_param_map(const Channel &channel, ExtraParamMap &map_extra, const GradParamMap &map_grad, ParameterMap &offsets) const override
Add extra Parameter indices to a map.
Definition source.cc:20

◆ add_grad_param_factors()

void lsst::gauss2d::fit::Source::add_grad_param_factors ( const Channel & channel,
GradParamFactors & factors ) const
overridevirtual

Add Parameter gradient factors to an existing map.

Parameters
channelThe Channel to add factors for.
factorsThe GradParamFactors to add to.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 33 of file source.cc.

33 {
34 for (auto& component : _components) component->add_grad_param_factors(channel, factors);
35}
void add_grad_param_factors(const Channel &channel, GradParamFactors &factors) const override
Add Parameter gradient factors to an existing map.
Definition source.cc:33

◆ add_grad_param_map()

void lsst::gauss2d::fit::Source::add_grad_param_map ( const Channel & channel,
GradParamMap & map,
ParameterMap & offsets ) const
overridevirtual

Add Parameter gradient indices to an existing map.

Parameters
channelThe Channel to add indices for.
mapThe map to add to.
offsetsA map of index offsets for Parameters that have already been added.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 29 of file source.cc.

29 {
30 for (auto& component : _components) component->add_grad_param_map(channel, map, offsets);
31}
void add_grad_param_map(const Channel &channel, GradParamMap &map, ParameterMap &offsets) const override
Add Parameter gradient indices to an existing map.
Definition source.cc:29

◆ get_components()

Components lsst::gauss2d::fit::Source::get_components ( ) const
overridevirtual

Implements lsst::gauss2d::fit::ComponentMixture.

Definition at line 37 of file source.cc.

37{ return _components; }

◆ get_gaussians()

std::unique_ptr< const lsst::gauss2d::Gaussians > lsst::gauss2d::fit::Source::get_gaussians ( const Channel & channel) const
overridevirtual

Return the vector of Gaussian sub-components controlled by this model.

Parameters
channelThe Channel to return Gaussians for.
Returns
The Gaussians controlled by this model.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 39 of file source.cc.

39 {
41 // TODO: This isn't sufficient; need to implement get_n_components
42 in.reserve(_components.size());
43 for (auto& component : _components) {
44 in.push_back(component->get_gaussians(channel)->get_data());
45 }
46 return std::make_unique<lsst::gauss2d::Gaussians>(in);
47}
T size(T... args)

◆ get_n_gaussians()

size_t lsst::gauss2d::fit::Source::get_n_gaussians ( const Channel & channel) const
overridevirtual

Return the number of Gaussian sub-components controlled by this model.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 49 of file source.cc.

49 {
50 size_t n_g = 0;
51 for (auto& component : _components) n_g += component->get_n_gaussians(channel);
52 return n_g;
53}
size_t get_n_gaussians(const Channel &channel) const override
Return the number of Gaussian sub-components controlled by this model.
Definition source.cc:49

◆ get_parameters()

ParamRefs & lsst::gauss2d::fit::Source::get_parameters ( ParamRefs & params,
ParamFilter * filter = nullptr ) const
overridevirtual

Add Parameter refs matching the filter to a vector, in order.

Parameters
paramsThe vector to add to.
filterThe filter to apply to this Object's parameters.
Returns
A ref to params (for method chaining)

Implements lsst::gauss2d::fit::Parametric.

Definition at line 55 of file source.cc.

55 {
56 for (auto& component : _components) component->get_parameters(params, filter);
57 return params;
58}
ParamRefs & get_parameters(ParamRefs &params, ParamFilter *filter=nullptr) const override
Add Parameter refs matching the filter to a vector, in order.
Definition source.cc:55

◆ get_parameters_const()

ParamCRefs & lsst::gauss2d::fit::Source::get_parameters_const ( ParamCRefs & params,
ParamFilter * filter = nullptr ) const
overridevirtual

Same as get_parameters(), but for const refs.

Implements lsst::gauss2d::fit::Parametric.

Definition at line 60 of file source.cc.

60 {
61 for (auto& component : _components) component->get_parameters_const(params, filter);
62 return params;
63}
ParamCRefs & get_parameters_const(ParamCRefs &params, ParamFilter *filter=nullptr) const override
Same as get_parameters(), but for const refs.
Definition source.cc:60

◆ get_parameters_const_new()

ParamCRefs lsst::gauss2d::fit::Parametric::get_parameters_const_new ( ParamFilter * filter = nullptr) const
inlineinherited

Same as get_parameters_const(), but returning a new vector.

Definition at line 33 of file parametric.h.

33 {
34 ParamCRefs params{};
35 get_parameters_const(params, filter);
36 return params;
37 }
virtual ParamCRefs & get_parameters_const(ParamCRefs &params, ParamFilter *filter=nullptr) const =0
Same as get_parameters(), but for const refs.
std::vector< ParamBaseCRef > ParamCRefs
Definition param_defs.h:11

◆ get_parameters_new()

ParamRefs lsst::gauss2d::fit::Parametric::get_parameters_new ( ParamFilter * filter = nullptr) const
inlineinherited

Same as get_parameters(), but returning a new vector.

Definition at line 27 of file parametric.h.

27 {
28 ParamRefs params{};
29 get_parameters(params, filter);
30 return params;
31 }
virtual ParamRefs & get_parameters(ParamRefs &params, ParamFilter *filter=nullptr) const =0
Add Parameter refs matching the filter to a vector, in order.
std::vector< ParamBaseRef > ParamRefs
Definition param_defs.h:13

◆ null_str()

static std::string_view lsst::gauss2d::Object::null_str ( const std::string_view & namespace_separator)
inlinestaticinherited

Definition at line 49 of file object.h.

49 {
50 return namespace_separator == CC_NAMESPACE_SEPARATOR ? "nullptr" : NULL_STR_GENERAL;
51 }
static constexpr std::string_view CC_NAMESPACE_SEPARATOR
The C++ namespace separator.
Definition object.h:45
static constexpr std::string_view NULL_STR_GENERAL
Definition object.h:46

◆ repr()

std::string lsst::gauss2d::fit::Source::repr ( bool name_keywords = false,
std::string_view namespace_separator = Object::CC_NAMESPACE_SEPARATOR ) const
overridevirtual

Return a full, callable string representation of this.

Parameters
name_keywordsWhether to prefix arguments with "{name}=", where name is the arg name in the header (as with keyword arguments in Python).
namespace_separatorThe string to use to delimit namespaces, i.e. :: in C++ and . in Python.
Returns
A callable string representation of this, which should return an an identical object to this.
Note
The representation with name_keywords=false must be callable in C++. The representation with name_keywords=true should be callable in Python, if there are any bindings.

Implements lsst::gauss2d::Object.

Definition at line 79 of file source.cc.

79 {
80 std::string s = type_name_str<Source>(false, namespace_separator) + "("
81 + (name_keywords ? "components=[" : "[");
82 for (const auto& c : _components) s += c->repr(name_keywords, namespace_separator) + ",";
83 return s + "])";
84}
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 source.cc:79

◆ set_extra_param_factors()

void lsst::gauss2d::fit::Source::set_extra_param_factors ( const Channel & channel,
ExtraParamFactors & factors,
size_t index ) const
overridevirtual

Set extra Parameter gradient factors in an existing map.

Parameters
channelThe Channel to set factors for.
factorsThe ExtraParamFactors to set factors for.
indexThe index to begin setting factors at.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 65 of file source.cc.

65 {
66 for (auto& component : _components) {
67 component->set_extra_param_factors(channel, factors, index);
68 index += component->get_n_gaussians(channel);
69 }
70}

◆ set_grad_param_factors()

void lsst::gauss2d::fit::Source::set_grad_param_factors ( const Channel & channel,
GradParamFactors & factors,
size_t index ) const
overridevirtual

Set Parameter gradient factors in an existing map.

Parameters
channelThe Channel to set factors for.
factorsThe GradParamFactors to set factors for.
indexThe index to begin setting factors at.

Implements lsst::gauss2d::fit::ParametricModel.

Definition at line 72 of file source.cc.

72 {
73 for (auto& component : _components) {
74 component->set_grad_param_factors(channel, factors, index);
75 index += component->get_n_gaussians(channel);
76 }
77}

◆ str()

std::string lsst::gauss2d::fit::Source::str ( ) const
overridevirtual

Return a brief, human-readable string representation of this.

Implements lsst::gauss2d::Object.

Definition at line 86 of file source.cc.

86 {
87 std::string s = type_name_str<Source>(true) + "(components=[";
88 for (const auto& c : _components) s += c->str() + ",";
89 return s + "])";
90}

Member Data Documentation

◆ CC_NAMESPACE_SEPARATOR

constexpr std::string_view lsst::gauss2d::Object::CC_NAMESPACE_SEPARATOR = "::"
staticconstexprinherited

The C++ namespace separator.

Definition at line 45 of file object.h.

◆ NULL_STR_GENERAL

constexpr std::string_view lsst::gauss2d::Object::NULL_STR_GENERAL = "None"
staticconstexprinherited

Definition at line 46 of file object.h.

◆ PY_NAMESPACE_SEPARATOR

constexpr std::string_view lsst::gauss2d::Object::PY_NAMESPACE_SEPARATOR = "."
staticconstexprinherited

Definition at line 47 of file object.h.


The documentation for this class was generated from the following files: