SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
IsophotalFlux.h
Go to the documentation of this file.
1
23#ifndef _SEIMPLEMENTATION_PROPERTY_ISOPHOTALFLUX_H
24#define _SEIMPLEMENTATION_PROPERTY_ISOPHOTALFLUX_H
25
26#include "SEUtils/Types.h"
28
29namespace SourceXtractor {
30
36class IsophotalFlux : public Property {
37public:
38
42 virtual ~IsophotalFlux() = default;
43
46
47 SeFloat getFlux() const {
48 return m_flux;
49 }
50
52 return m_flux_error;
53 }
54
55 SeFloat getMag() const {
56 return m_mag;
57 }
58
60 return m_mag_error;
61 }
62
63private:
68
69}; /* End of IsophotalFlux class */
70
71} /* namespace SourceXtractor */
72
73
74#endif
Computes the isophotal flux and magnitude.
virtual ~IsophotalFlux()=default
Destructor.
IsophotalFlux(SeFloat flux, SeFloat flux_error, SeFloat mag, SeFloat mag_error)
Base class for all Properties. (has no actual content)
Definition Property.h:33