LSST Applications g0f08755f38+51082c0d4d,g1653933729+a905cd61c3,g168dd56ebc+a905cd61c3,g1a2382251a+29afb38aec,g20f6ffc8e0+51082c0d4d,g217e2c1bcf+ab9ba0d5ca,g28da252d5a+81b6c2f226,g2bbee38e9b+cc7bbd92cc,g2bc492864f+cc7bbd92cc,g32e5bea42b+4321971e9a,g347aa1857d+cc7bbd92cc,g35bb328faa+a905cd61c3,g3a166c0a6a+cc7bbd92cc,g3bd4b5ce2c+e795d60641,g3e281a1b8c+2bff41ced5,g414038480c+4de324692b,g41af890bb2+f80cf72528,g43bc871e57+a73212ffc0,g78460c75b0+4ae99bb757,g80478fca09+dbf4c199e3,g82479be7b0+84a80b86d5,g8365541083+a905cd61c3,g858d7b2824+51082c0d4d,g9125e01d80+a905cd61c3,ga5288a1d22+379478ca77,gb58c049af0+84d1b6ec45,gc28159a63d+cc7bbd92cc,gc5452a3dca+b82ec7cc4c,gcab2d0539d+4a1e53d2eb,gcf0d15dbbd+a702646d8b,gda6a2b7d83+a702646d8b,gdaeeff99f8+686ef0dd99,ge79ae78c31+cc7bbd92cc,gef2f8181fd+c1889b0e42,gf0baf85859+f9edac6842,gf1e97e5484+bcd3814849,gfa517265be+51082c0d4d,gfa999e8aa5+d85414070d,w.2025.01
LSST Data Management Base Package
Loading...
Searching...
No Matches
integralmodel.h
Go to the documentation of this file.
1#ifndef LSST_GAUSS2D_FIT_INTEGRALMODEL_H
2#define LSST_GAUSS2D_FIT_INTEGRALMODEL_H
3
4#include <memory>
5#include <set>
6
7#include "channel.h"
8#include "chromatic.h"
9#include "parametric.h"
10#include "parametricmodel.h"
11
12namespace lsst::gauss2d::fit {
23class IntegralModel : public Chromatic, public Parametric {
24public:
26 virtual double get_integral(const Channel &channel) const = 0;
37 const Channel &channel) const
38 = 0;
39};
40
41inline bool operator<(const IntegralModel &lhs, const IntegralModel &rhs) { return &lhs < &rhs; }
42// TODO: These aren't necessary, but should they be included?
43// const bool operator == ( const IntegralModel &m ) const { return &(*this) == &m; };
44// const bool operator != ( const IntegralModel &m ) const { return &(*this) != &m; };
45
46} // namespace lsst::gauss2d::fit
47
48#endif
An observational channel, usually representing some range of wavelengths of light.
Definition channel.h:29
A Parametric model for the integral of a 2D distribution.
virtual std::vector< std::pair< ParamBaseCRef, ExtraParamFactorValues > > get_integral_derivative_factors(const Channel &channel) const =0
Return the partial derivative of the model w.r.t.
virtual double get_integral(const Channel &channel) const =0
Get the value of the integral in a single Channel.
A parametric object that can return and filter its Parameter instances.
Definition parametric.h:13
bool operator<(const std::reference_wrapper< const Channel > &lhs, const std::reference_wrapper< const Channel > &rhs)
Definition channel.h:104