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