LSST Applications g04e9c324dd+8c5ae1fdc5,g134cb467dc+b203dec576,g18429d2f64+358861cd2c,g199a45376c+0ba108daf9,g1fd858c14a+dd066899e3,g262e1987ae+ebfced1d55,g29ae962dfc+72fd90588e,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+b668f15bc5,g4595892280+3897dae354,g47891489e3+abcf9c3559,g4d44eb3520+fb4ddce128,g53246c7159+8c5ae1fdc5,g67b6fd64d1+abcf9c3559,g67fd3c3899+1f72b5a9f7,g74acd417e5+cb6b47f07b,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+abcf9c3559,g8d7436a09f+bcf525d20c,g8ea07a8fe4+9f5ccc88ac,g90f42f885a+6054cc57f1,g97be763408+06f794da49,g9dd6db0277+1f72b5a9f7,ga681d05dcb+7e36ad54cd,gabf8522325+735880ea63,gac2eed3f23+abcf9c3559,gb89ab40317+abcf9c3559,gbf99507273+8c5ae1fdc5,gd8ff7fe66e+1f72b5a9f7,gdab6d2f7ff+cb6b47f07b,gdc713202bf+1f72b5a9f7,gdfd2d52018+8225f2b331,ge365c994fd+375fc21c71,ge410e46f29+abcf9c3559,geaed405ab2+562b3308c0,gf9a733ac38+8c5ae1fdc5,w.2025.35
LSST Data Management Base Package
Loading...
Searching...
No Matches
source.cc
Go to the documentation of this file.
1#include <optional>
2#include <stdexcept>
3
5
7
8namespace lsst::gauss2d::fit {
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}
19
20void Source::add_extra_param_map(const Channel& channel, ExtraParamMap& map_extra,
21 const GradParamMap& map_grad, ParameterMap& offsets) const {
22 for (auto& component : _components) component->add_extra_param_map(channel, map_extra, map_grad, offsets);
23}
24
25void Source::add_extra_param_factors(const Channel& channel, ExtraParamFactors& factors) const {
26 for (auto& component : _components) component->add_extra_param_factors(channel, factors);
27}
28
29void Source::add_grad_param_map(const Channel& channel, GradParamMap& map, ParameterMap& offsets) const {
30 for (auto& component : _components) component->add_grad_param_map(channel, map, offsets);
31}
32
33void Source::add_grad_param_factors(const Channel& channel, GradParamFactors& factors) const {
34 for (auto& component : _components) component->add_grad_param_factors(channel, factors);
35}
36
37Components Source::get_components() const { return _components; }
38
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}
48
49size_t Source::get_n_gaussians(const Channel& channel) const {
50 size_t n_g = 0;
51 for (auto& component : _components) n_g += component->get_n_gaussians(channel);
52 return n_g;
53}
54
56 for (auto& component : _components) component->get_parameters(params, filter);
57 return params;
58}
59
61 for (auto& component : _components) component->get_parameters_const(params, filter);
62 return params;
63}
64
65void Source::set_extra_param_factors(const Channel& channel, ExtraParamFactors& factors, size_t index) const {
66 for (auto& component : _components) {
67 component->set_extra_param_factors(channel, factors, index);
68 index += component->get_n_gaussians(channel);
69 }
70}
71
72void Source::set_grad_param_factors(const Channel& channel, GradParamFactors& factors, size_t index) const {
73 for (auto& component : _components) {
74 component->set_grad_param_factors(channel, factors, index);
75 index += component->get_n_gaussians(channel);
76 }
77}
78
79std::string Source::repr(bool name_keywords, std::string_view namespace_separator) const {
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}
85
87 std::string s = type_name_str<Source>(true) + "(components=[";
88 for (const auto& c : _components) s += c->str() + ",";
89 return s + "])";
90}
91} // namespace lsst::gauss2d::fit
An observational channel, usually representing some range of wavelengths of light.
Definition channel.h:29
void add_grad_param_factors(const Channel &channel, GradParamFactors &factors) const override
Add Parameter gradient factors to an existing map.
Definition source.cc:33
std::unique_ptr< const lsst::gauss2d::Gaussians > get_gaussians(const Channel &channel) const override
Return the vector of Gaussian sub-components controlled by this model.
Definition source.cc:39
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
std::string str() const override
Return a brief, human-readable string representation of this.
Definition source.cc:86
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
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
void set_grad_param_factors(const Channel &channel, GradParamFactors &factors, size_t index) const override
Set Parameter gradient factors in an existing map.
Definition source.cc:72
ParamCRefs & get_parameters_const(ParamCRefs &params, ParamFilter *filter=nullptr) const override
Same as get_parameters(), but for const refs.
Definition source.cc:60
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
Source(Components &components)
Definition source.cc:9
void set_extra_param_factors(const Channel &channel, ExtraParamFactors &factors, size_t index) const override
Set extra Parameter gradient factors in an existing map.
Definition source.cc:65
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
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
Components get_components() const override
Definition source.cc:37
T move(T... args)
std::vector< std::array< double, lsst::gauss2d::N_PARAMS_GAUSS2D > > GradParamFactors
std::vector< ParamBaseRef > ParamRefs
Definition param_defs.h:13
std::vector< std::array< size_t, lsst::gauss2d::N_PARAMS_GAUSS2D > > GradParamMap
std::vector< ExtraParamFactorValues > ExtraParamFactors
std::vector< std::array< size_t, lsst::gauss2d::N_EXTRA_MAP > > ExtraParamMap
std::vector< ParamBaseCRef > ParamCRefs
Definition param_defs.h:11
std::vector< std::shared_ptr< Component > > Components
std::map< ParamBaseCRef, size_t > ParameterMap
std::string type_name_str(bool strip_namespace=false, std::string_view namespace_str=detail::NAMESPACE_SEPARATOR)
Get a string representation of an arbitrary C++ type, potentially modifying its namespace prefix.
Definition type_name.h:104
T reserve(T... args)
T size(T... args)
Options for filtering Parameter instances.
T to_string(T... args)