LSST Applications g0fba68d861+a3ea3d1d86,g1ec0fe41b4+e220e2fb2f,g1fd858c14a+120b017347,g35bb328faa+fcb1d3bbc8,g4d2262a081+bd92cbabc2,g53246c7159+fcb1d3bbc8,g56a49b3a55+8d793c2a3d,g60b5630c4e+4e8d433789,g67b6fd64d1+fad15079a7,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8180f54f50+65cb53bb37,g8352419a5c+fcb1d3bbc8,g8852436030+ae791ba189,g89139ef638+fad15079a7,g9125e01d80+fcb1d3bbc8,g94187f82dc+4e8d433789,g989de1cb63+fad15079a7,g9ccd5d7f00+cce09d2c12,g9d31334357+4e8d433789,g9f33ca652e+323fd354f8,gabe3b4be73+1e0a283bba,gabf8522325+94c30d56e9,gb1101e3267+5e0f808207,gb58c049af0+f03b321e39,gb89ab40317+fad15079a7,gc0af124501+a88dc73679,gcf25f946ba+ae791ba189,gd6cbbdb0b4+8d7f1baacb,gdb1c4ca869+16879ca1a6,gde0f65d7ad+61e7a18ddf,ge1ad929117+4e8d433789,ge278dab8ac+4d6e48c014,ge35a86080c+6eff471efc,ge410e46f29+fad15079a7,gf5e32f922b+fcb1d3bbc8,gf618743f1b+8ff1364817,gf67bdafdda+fad15079a7,w.2025.17
LSST Data Management Base Package
|
#include <transform.h>
Public Member Functions | |
std::string | description () const override |
Return a description of this transform. | |
std::string | repr (bool=false, const 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. | |
T | derivative (T) const override |
Return the derivative of this tranform at the value x. | |
T | forward (T x) const override |
Return the transformed value of x. | |
T | reverse (T x) const override |
Return the original value of x given a transformed value. | |
~UnitTransform ()=default | |
Static Public Member Functions | |
static const UnitTransform< T > & | get () |
Static Public Attributes | |
static constexpr std::string_view | CC_NAMESPACE_SEPARATOR = "::" |
The C++ namespace separator. | |
Definition at line 61 of file transform.h.
|
default |
|
inlineoverridevirtual |
Return the derivative of this tranform at the value x.
Implements lsst::modelfit::parameters::Transform< T >.
Definition at line 74 of file transform.h.
|
inlineoverridevirtual |
Return a description of this transform.
Implements lsst::modelfit::parameters::Transform< T >.
Definition at line 63 of file transform.h.
|
inlineoverridevirtual |
Return the transformed value of x.
Implements lsst::modelfit::parameters::Transform< T >.
Definition at line 75 of file transform.h.
|
inlinestatic |
Definition at line 64 of file transform.h.
|
inlineoverridevirtual |
Return a full, callable string representation of this.
name_keywords | Whether to prefix arguments with "{name}=", where name is the arg name in the header (as with keyword arguments in Python). |
namespace_separator | The string to use to delimit namespaces, i.e. :: in C++ and . in Python. |
Implements lsst::modelfit::parameters::Object.
Definition at line 68 of file transform.h.
|
inlineoverridevirtual |
Return the original value of x given a transformed value.
Implements lsst::modelfit::parameters::Transform< T >.
Definition at line 76 of file transform.h.
|
inlineoverridevirtual |
Return a brief, human-readable string representation of this.
Implements lsst::modelfit::parameters::Object.
Definition at line 72 of file transform.h.
|
staticconstexprinherited |