Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04dff08e69+fafbcb10e2,g0d33ba9806+3d21495239,g0fba68d861+4a282a2c93,g1ec0fe41b4+f536777771,g1fd858c14a+ae46bc2a71,g35bb328faa+fcb1d3bbc8,g4af146b050+9c38a215af,g4d2262a081+36f1e108ba,g53246c7159+fcb1d3bbc8,g5a012ec0e7+b20b785ecb,g60b5630c4e+3d21495239,g6273192d42+d9e7b43dd0,g67b6fd64d1+4086c0989b,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+2198278b84,g8852436030+54b48a5987,g89139ef638+4086c0989b,g9125e01d80+fcb1d3bbc8,g94187f82dc+3d21495239,g989de1cb63+4086c0989b,g9d31334357+3d21495239,g9f33ca652e+83205baa3c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+85d1f90f4c,gb58c049af0+f03b321e39,gb89ab40317+4086c0989b,gc0bb628dac+d11454dffd,gcf25f946ba+54b48a5987,gd6cbbdb0b4+af3c3595f5,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+a74c3eaa38,ge278dab8ac+d65b3c2b70,ge410e46f29+4086c0989b,gf23fb2af72+b3e27b8ebc,gf67bdafdda+4086c0989b,v29.0.0.rc6
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
lsst::gauss2d::detail::GradientsExtra< t, Data, Indices > Class Template Reference

#include <evaluate.h>

Inheritance diagram for lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >:
lsst::gauss2d::Object

Public Member Functions

 GradientsExtra (const Image< idx_type, Indices > &param_map_in, const Image< t, Data > &param_factor_in, std::shared_ptr< ImageArray< t, Data > > output, size_t n_gauss)
 
 GradientsExtra ()=delete
 
void add_index_to_set (size_t g, std::set< size_t > &set)
 
void add (size_t g, size_t dim1, size_t dim2, const ValuesGauss &gradients)
 
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.
 

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, class Data, class Indices>
class lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >

Definition at line 330 of file evaluate.h.

Constructor & Destructor Documentation

◆ GradientsExtra() [1/2]

template<typename t, class Data, class Indices>
lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::GradientsExtra ( const Image< idx_type, Indices > & param_map_in,
const Image< t, Data > & param_factor_in,
std::shared_ptr< ImageArray< t, Data > > output,
size_t n_gauss )
inline

Definition at line 332 of file evaluate.h.

334 : _param_map(param_map_in), _param_factor(param_factor_in), _output(output) {
335 if(output == nullptr) {
336 throw std::invalid_argument("GradientsExtra output must not be a nullptr");
337 }
338 const auto n_extra_map_rows = param_map_in.get_n_rows();
339 const auto n_extra_fac_rows = param_factor_in.get_n_rows();
340 const auto n_extra_map_cols = param_map_in.get_n_cols();
341 const auto n_extra_fac_cols = param_factor_in.get_n_cols();
342 std::string errmsg = "";
343 if (n_extra_map_rows != n_gauss) {
344 errmsg += "extra_param_map n_rows=" + std::to_string(n_extra_map_rows)
345 + " != n_gauss=" + std::to_string(n_gauss) + ". ";
346 }
347 if (n_extra_fac_rows != n_gauss) {
348 errmsg += "extra_param_factor n_rows=" + std::to_string(n_extra_fac_rows)
349 + " != n_gauss=" + std::to_string(n_gauss) + ". ";
350 }
352 errmsg += "extra_param_map n_cols=" + std::to_string(n_extra_map_cols) + " != 2. ";
353 }
355 errmsg += "extra_param_factor n_cols=" + std::to_string(n_extra_fac_cols) + " != 3. ";
356 }
357 if (!errmsg.empty()) throw std::runtime_error(errmsg);
358 }
T to_string(T... args)

◆ GradientsExtra() [2/2]

template<typename t, class Data, class Indices>
lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::GradientsExtra ( )
delete

Member Function Documentation

◆ add()

template<typename t, class Data, class Indices>
void lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::add ( size_t g,
size_t dim1,
size_t dim2,
const ValuesGauss & gradients )
inline

Definition at line 364 of file evaluate.h.

364 {
365 // Reset g_check to zero once g rolls back to zero itself
366 _g_check *= (g != 0);
367 const bool to_add = g == _param_map.get_value(_g_check, 0);
368 const auto idx = _param_map.get_value(g, 1);
369 double value = gradients.L * _param_factor.get_value(g, 0)
370 + gradients.sigma_x * _param_factor.get_value(g, 1)
371 + gradients.sigma_y * _param_factor.get_value(g, 2);
372 (*_output)[idx].add_value_unchecked(dim1, dim2, value);
373 _g_check += to_add;
374 }

◆ add_index_to_set()

template<typename t, class Data, class Indices>
void lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::add_index_to_set ( size_t g,
std::set< size_t > & set )
inline

Definition at line 362 of file evaluate.h.

362{ set.insert(_param_map.get_value(g, 1)); }

◆ 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, class Data, class Indices>
std::string lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::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 376 of file evaluate.h.

377 {
378 bool is_kw = name_keywords;
379 std::string rval = ( //
381 + (is_kw ? "param_map=" : "") + _param_map.repr(is_kw, namespace_separator) + ", "
382 + (is_kw ? "param_factor=" : "") + _param_factor.repr(is_kw, namespace_separator) + ", "
383 + (is_kw ? "output=" : "") + _output->repr(is_kw, namespace_separator) + ", "
384 + (is_kw ? "n_gauss=" : "") + std::to_string(_param_map.get_n_rows()) + ")" //
385 );
386 return rval;
387 }
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 evaluate.h:376

◆ str()

template<typename t, class Data, class Indices>
std::string lsst::gauss2d::detail::GradientsExtra< t, Data, Indices >::str ( ) const
inlineoverridevirtual

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

Implements lsst::gauss2d::Object.

Definition at line 388 of file evaluate.h.

388 {
389 std::string rval = ( //
391 + "param_map=" + _param_map.str() + ", " //
392 + "param_factor=" + _param_factor.str() + ", " //
393 + "output=" + _output->str() + ", " //
394 + "n_gauss=" + std::to_string(_param_map.get_n_rows()) + ")" //
395 );
396 return rval;
397 }
std::string str() const override
Return a brief, human-readable string representation of this.
Definition evaluate.h:388

Member Data Documentation

◆ CC_NAMESPACE_SEPARATOR

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

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

Definition at line 46 of file object.h.

◆ PY_NAMESPACE_SEPARATOR

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: