LSST Applications g07dc498a13+8a3ff5e555,g1409bbee79+8a3ff5e555,g1a7e361dbc+8a3ff5e555,g1fd858c14a+cdfc45a1e6,g28da252d5a+05df2523c9,g33399d78f5+b7ce9b29cb,g35bb328faa+e55fef2c71,g3bd4b5ce2c+801aef9193,g43bc871e57+32b9ddb877,g53246c7159+e55fef2c71,g60b5630c4e+f284161bd5,g6992a3b7c1+89734069dd,g6e5c4a0e23+7c1dc9d5af,g78460c75b0+8427c4cc8f,g786e29fd12+307f82e6af,g8534526c7b+af2545e932,g85d8d04dbe+6bd817bf56,g89139ef638+8a3ff5e555,g8b49a6ea8e+f284161bd5,g9125e01d80+e55fef2c71,g989de1cb63+8a3ff5e555,g9a9baf55bd+a4ec829099,g9f33ca652e+eafd8913dc,gaaedd4e678+8a3ff5e555,gabe3b4be73+9c0c3c7524,gb092a606b0+b01f69f56e,gb58c049af0+28045f66fd,gc2fcbed0ba+f284161bd5,gca43fec769+e55fef2c71,gcf25f946ba+b7ce9b29cb,gd6cbbdb0b4+784e334a77,gde0f65d7ad+3bc0905521,ge278dab8ac+25667260f6,geab183fbe5+f284161bd5,gecb8035dfe+0fa5abcb94,gf1e97e5484+b700727375,gf58bf46354+e55fef2c71,gfe7187db8c+f9d6462591,w.2025.01
LSST Data Management Base Package
Loading...
Searching...
No Matches
parametricgaussian1d.h
Go to the documentation of this file.
1#ifndef LSST_GAUSS2D_FIT_PARAMETRICGAUSSIAN1D_H
2#define LSST_GAUSS2D_FIT_PARAMETRICGAUSSIAN1D_H
3
4#include <map>
5
7
8#include "math.h"
9#include "param_defs.h"
10#include "parameters.h"
11
12namespace lsst::gauss2d::fit {
13
15public:
17 std::shared_ptr<StdDevParameterD> stddev = nullptr);
18
20
21 double get_mean() const;
22 double get_stddev() const;
23
26
27 void set_mean(double value);
28 void set_stddev(double value);
29
30 std::string repr(bool name_keywords = false,
31 std::string_view namespace_separator = Object::CC_NAMESPACE_SEPARATOR) const override;
32 std::string str() const override;
33
34private:
37};
38
39} // namespace lsst::gauss2d::fit
40
41#endif // GAUSS2D_FIT_PARAMETRICGAUSSIAN1D_H
A generic object from the gauss2d library.
Definition object.h:40
static constexpr std::string_view CC_NAMESPACE_SEPARATOR
The C++ namespace separator.
Definition object.h:45
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.
ParametricGaussian1D(std::shared_ptr< MeanParameterD > mean=nullptr, std::shared_ptr< StdDevParameterD > stddev=nullptr)