LSST Applications g013ef56533+b8d55c8942,g083dd6704c+a047e97985,g199a45376c+0ba108daf9,g1fd858c14a+7a3b874d60,g210f2d0738+7416ca6900,g262e1987ae+1d557ba9a3,g29ae962dfc+519d34895e,g2cef7863aa+aef1011c0b,g30d7c61c20+36d16ea71a,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+cb326ad149,g47891489e3+f459a6810c,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5a60e81ecd+6240c63dbc,g64539dfbff+7416ca6900,g67b6fd64d1+f459a6810c,g6ebf1fc0d4+8c5ae1fdc5,g74acd417e5+0bae3c876a,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+f459a6810c,g8d7436a09f+dee7680868,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g97be763408+14b8164b5b,g98a1a72a9c+8389601a76,g98df359435+fff771c62d,gb8cb2b794d+6728931916,gbf99507273+8c5ae1fdc5,gc2a301910b+7416ca6900,gca7fc764a6+f459a6810c,gd7ef33dd92+f459a6810c,gdab6d2f7ff+0bae3c876a,ge410e46f29+f459a6810c,ge41e95a9f2+7416ca6900,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.43
LSST Data Management Base Package
Loading...
Searching...
No Matches
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: