LSST Applications g063fba187b+cac8b7c890,g0f08755f38+6aee506743,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a2382251a+b4475c5878,g1dcb35cd9c+8f9bc1652e,g20f6ffc8e0+6aee506743,g217e2c1bcf+73dee94bd0,g28da252d5a+1f19c529b9,g2bbee38e9b+3f2625acfc,g2bc492864f+3f2625acfc,g3156d2b45e+6e55a43351,g32e5bea42b+1bb94961c2,g347aa1857d+3f2625acfc,g35bb328faa+a8ce1bb630,g3a166c0a6a+3f2625acfc,g3e281a1b8c+c5dd892a6c,g3e8969e208+a8ce1bb630,g414038480c+5927e1bc1e,g41af890bb2+8a9e676b2a,g7af13505b9+809c143d88,g80478fca09+6ef8b1810f,g82479be7b0+f568feb641,g858d7b2824+6aee506743,g89c8672015+f4add4ffd5,g9125e01d80+a8ce1bb630,ga5288a1d22+2903d499ea,gb58c049af0+d64f4d3760,gc28159a63d+3f2625acfc,gcab2d0539d+b12535109e,gcf0d15dbbd+46a3f46ba9,gda6a2b7d83+46a3f46ba9,gdaeeff99f8+1711a396fd,ge79ae78c31+3f2625acfc,gef2f8181fd+0a71e47438,gf0baf85859+c1f95f4921,gfa517265be+6aee506743,gfa999e8aa5+17cd334064,w.2024.51
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
lsst::gauss2d::fit::Log10Transform Struct Referenceabstract

#include <transforms.h>

Inheritance diagram for lsst::gauss2d::fit::Log10Transform:
lsst::modelfit::parameters::Transform< T > lsst::modelfit::parameters::Object

Public Member Functions

std::string description () const override
 Return a description of this transform.
 
std::string repr (bool name_keywords=false, const std::string_view &namespace_separator=parameters::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.
 
double derivative (double x) const override
 
double forward (double x) const override
 
double reverse (double x) const override
 
virtual T derivative (T x) const =0
 Return the derivative of this tranform at the value x.
 
virtual T forward (T x) const =0
 Return the transformed value of x.
 
virtual T reverse (T x) const =0
 Return the original value of x given a transformed value.
 

Static Public Attributes

static constexpr std::string_view CC_NAMESPACE_SEPARATOR = "::"
 The C++ namespace separator.
 

Detailed Description

Definition at line 81 of file transforms.h.

Member Function Documentation

◆ derivative() [1/2]

double lsst::gauss2d::fit::Log10Transform::derivative ( double x) const
inlineoverride

Definition at line 90 of file transforms.h.

90 {
91 return 0.434294481903251827651128918916605082294397 / x;
92 }

◆ derivative() [2/2]

template<class T >
virtual T lsst::modelfit::parameters::Transform< T >::derivative ( T x) const
pure virtualinherited

Return the derivative of this tranform at the value x.

Implemented in lsst::modelfit::parameters::UnitTransform< T >.

◆ description()

std::string lsst::gauss2d::fit::Log10Transform::description ( ) const
inlineoverridevirtual

Return a description of this transform.

Implements lsst::modelfit::parameters::Transform< T >.

Definition at line 82 of file transforms.h.

82{ return "Base 10 logarithmic transform"; }

◆ forward() [1/2]

double lsst::gauss2d::fit::Log10Transform::forward ( double x) const
inlineoverride

Definition at line 93 of file transforms.h.

93{ return log10(x); }

◆ forward() [2/2]

template<class T >
virtual T lsst::modelfit::parameters::Transform< T >::forward ( T x) const
pure virtualinherited

Return the transformed value of x.

Implemented in lsst::modelfit::parameters::UnitTransform< T >.

◆ repr()

std::string lsst::gauss2d::fit::Log10Transform::repr ( bool name_keywords = false,
const std::string_view & namespace_separator = parameters::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::modelfit::parameters::Object.

Definition at line 83 of file transforms.h.

85 {
86 return parameters::type_name_str<Log10Transform>(false, namespace_separator) + "()";
87 }

◆ reverse() [1/2]

double lsst::gauss2d::fit::Log10Transform::reverse ( double x) const
inlineoverride

Definition at line 94 of file transforms.h.

94{ return pow(10., x); }
T pow(T... args)

◆ reverse() [2/2]

template<class T >
virtual T lsst::modelfit::parameters::Transform< T >::reverse ( T x) const
pure virtualinherited

Return the original value of x given a transformed value.

Implemented in lsst::modelfit::parameters::UnitTransform< T >.

◆ str()

std::string lsst::gauss2d::fit::Log10Transform::str ( ) const
inlineoverridevirtual

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

Implements lsst::modelfit::parameters::Object.

Definition at line 88 of file transforms.h.

88{ return parameters::type_name_str<Log10Transform>(true) + "()"; }

Member Data Documentation

◆ CC_NAMESPACE_SEPARATOR

constexpr std::string_view lsst::modelfit::parameters::Object::CC_NAMESPACE_SEPARATOR = "::"
staticconstexprinherited

The C++ namespace separator.

Definition at line 42 of file object.h.


The documentation for this struct was generated from the following file: