lsst.gauss2d.fit g199a45376c+5e234f8357
 
Loading...
Searching...
No Matches
component.h
1#ifndef LSST_GAUSS2D_FIT_COMPONENT_H
2#define LSST_GAUSS2D_FIT_COMPONENT_H
3
4#include "channel.h"
5#include "integralmodel.h"
6#include "parametricmodel.h"
7
8namespace lsst::gauss2d::fit {
15class Component : public ParametricModel {
16public:
17 virtual const IntegralModel& get_integralmodel() const = 0;
18};
19
20} // namespace lsst::gauss2d::fit
21
22#endif
An atomic constituent of a source.
Definition component.h:15
A Parametric model for the integral of a 2D distribution.
Definition integralmodel.h:23
Definition parametricmodel.h:25