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 Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
lsst::gauss2d::fit::Data< T, I, M > Class Template Reference

A list of Observation instances that can be modelled. More...

#include <data.h>

Inheritance diagram for lsst::gauss2d::fit::Data< T, I, M >:
lsst::gauss2d::fit::Chromatic lsst::gauss2d::fit::Parametric lsst::gauss2d::Object

Public Types

using Observation = lsst::gauss2d::fit::Observation<T, I, M>
 
using ObservationCRef = std::reference_wrapper<const Observation>
 

Public Member Functions

 Data (std::vector< std::shared_ptr< const Observation > > observations)
 Construct a Data instance.
 
auto at (size_t i) const
 
auto begin () const
 
auto end () const
 
auto cbegin () const
 
auto cend () const
 
std::vector< std::reference_wrapper< const Channel > > get_channels () const override
 Get the set of channels this instance is applicable for.
 
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.
 
size_t size () const
 Get the number of member Observation.
 
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

template<typename T, typename I, typename M>
class lsst::gauss2d::fit::Data< T, I, M >

A list of Observation instances that can be modelled.

A Data is a list of Observation instances that can have associated Model instances. Multiple Observation instances may have the same Channel, but one should not include the same Observation multiple time.

Template Parameters
TThe type of the Observation Image (usually float or double)
IThe type of the Observation indices (usually size_t)
MThe type of the Observation Mask (usually bool)

Definition at line 32 of file data.h.

Member Typedef Documentation

◆ Observation

template<typename T , typename I , typename M >
using lsst::gauss2d::fit::Data< T, I, M >::Observation = lsst::gauss2d::fit::Observation<T, I, M>

Definition at line 34 of file data.h.

◆ ObservationCRef

template<typename T , typename I , typename M >
using lsst::gauss2d::fit::Data< T, I, M >::ObservationCRef = std::reference_wrapper<const Observation>

Definition at line 35 of file data.h.

Constructor & Destructor Documentation

◆ Data()

template<typename T , typename I , typename M >
lsst::gauss2d::fit::Data< T, I, M >::Data ( std::vector< std::shared_ptr< const Observation > > observations)
inlineexplicit

Construct a Data instance.

Parameters
observationsThe Observation pointers to include. Must not be null.

Definition at line 42 of file data.h.

42 {
43 _observations.reserve(observations.size());
44 _observation_ptrs.reserve(observations.size());
45
46 for (const auto& observation : observations) {
47 if (observation == nullptr) throw std::invalid_argument("Can't store null Observation");
48 const auto& channel = observation->get_channel();
49 if (_channels.find(channel) == _channels.end()) {
50 _channels_ordered.push_back(channel);
51 _channels.insert(channel);
52 }
53 _observations.push_back(ObservationCRef(*observation));
54 _observation_ptrs.push_back(observation);
55 }
56 }
std::reference_wrapper< const Observation > ObservationCRef
Definition data.h:35
T size(T... args)

Member Function Documentation

◆ at()

template<typename T , typename I , typename M >
auto lsst::gauss2d::fit::Data< T, I, M >::at ( size_t i) const
inline

Definition at line 58 of file data.h.

58{ return _observations.at(i); }

◆ begin()

template<typename T , typename I , typename M >
auto lsst::gauss2d::fit::Data< T, I, M >::begin ( ) const
inline

Definition at line 59 of file data.h.

59{ return _observations.begin(); }

◆ cbegin()

template<typename T , typename I , typename M >
auto lsst::gauss2d::fit::Data< T, I, M >::cbegin ( ) const
inline

Definition at line 62 of file data.h.

62{ return _observations.begin(); }

◆ cend()

template<typename T , typename I , typename M >
auto lsst::gauss2d::fit::Data< T, I, M >::cend ( ) const
inline

Definition at line 63 of file data.h.

63{ return _observations.end(); }

◆ end()

template<typename T , typename I , typename M >
auto lsst::gauss2d::fit::Data< T, I, M >::end ( ) const
inline

Definition at line 60 of file data.h.

60{ return _observations.end(); }

◆ get_channels()

template<typename T , typename I , typename M >
std::vector< std::reference_wrapper< const Channel > > lsst::gauss2d::fit::Data< T, I, M >::get_channels ( ) const
inlineoverridevirtual

Get the set of channels this instance is applicable for.

Note
Implementers must return a set (all unique items). This cannot be enforced (yet).

Implements lsst::gauss2d::fit::Chromatic.

Definition at line 65 of file data.h.

65 {
66 return _channels_ordered;
67 }

◆ get_parameters()

template<typename T , typename I , typename M >
ParamRefs & lsst::gauss2d::fit::Data< T, I, M >::get_parameters ( ParamRefs & params,
ParamFilter * filter = nullptr ) const
inlineoverridevirtual

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 69 of file data.h.

69 {
70 for (const Observation& exp : *this) exp.get_parameters(params, filter);
71 return params;
72 }
ParamRefs & get_parameters(ParamRefs &params, ParamFilter *filter=nullptr) const override
Add Parameter refs matching the filter to a vector, in order.
Definition data.h:69
lsst::gauss2d::fit::Observation< T, I, M > Observation
Definition data.h:34

◆ get_parameters_const()

template<typename T , typename I , typename M >
ParamCRefs & lsst::gauss2d::fit::Data< T, I, M >::get_parameters_const ( ParamCRefs & params,
ParamFilter * filter = nullptr ) const
inlineoverridevirtual

Same as get_parameters(), but for const refs.

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

Definition at line 73 of file data.h.

73 {
74 for (auto exp_it = this->cbegin(); exp_it != this->cend(); ++exp_it) {
75 (*exp_it).get().get_parameters_const(params, filter);
76 }
77 return params;
78 }
auto cend() const
Definition data.h:63
auto cbegin() const
Definition data.h:62

◆ 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()

template<typename T , typename I , typename M >
std::string lsst::gauss2d::fit::Data< T, I, M >::repr ( bool name_keywords = false,
std::string_view namespace_separator = Object::CC_NAMESPACE_SEPARATOR ) const
inlineoverridevirtual

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 83 of file data.h.

84 {
85 std::string str = std::string("Data(") + (name_keywords ? "observations=[" : "[");
86 for (auto exp_it = this->cbegin(); exp_it != this->cend(); ++exp_it) {
87 str += (*exp_it).get().repr(name_keywords, namespace_separator) + ",";
88 }
89 str += "]);";
90 return str;
91 }
std::string str() const override
Return a brief, human-readable string representation of this.
Definition data.h:92

◆ size()

template<typename T , typename I , typename M >
size_t lsst::gauss2d::fit::Data< T, I, M >::size ( ) const
inline

Get the number of member Observation.

Definition at line 81 of file data.h.

81{ return _observations.size(); }

◆ str()

template<typename T , typename I , typename M >
std::string lsst::gauss2d::fit::Data< T, I, M >::str ( ) const
inlineoverridevirtual

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

Implements lsst::gauss2d::Object.

Definition at line 92 of file data.h.

92 {
93 std::string str = "Data(observations=[";
94 for (auto exp_it = this->cbegin(); exp_it != this->cend(); ++exp_it) {
95 str += (*exp_it).get().str() + ",";
96 }
97 str += "])";
98 return str;
99 }

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 file: