SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
KronRadius.h
Go to the documentation of this file.
1
17/*
18 * AutoPhotometry.h
19 *
20 * Created on: Sept. 12, 2018
21 * Author: mkuemmel@usm.lmu.de
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUS_H_
25#define _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUS_H_
26
27#include "SEUtils/Types.h"
29
30namespace SourceXtractor {
31
36class KronRadius : public Property {
37public:
38
42 virtual ~KronRadius() = default;
43
46
48 return m_kron_radius;
49 }
50
51 SeFloat getFlag() const {
52 return m_flag;
53 }
54
55private:
57 long int m_flag;
58};
59
60} /* namespace SourceXtractor */
61
62#endif /* _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUS_H_ */
SeFloat getFlag() const
Definition KronRadius.h:51
SeFloat getKronRadius() const
Definition KronRadius.h:47
virtual ~KronRadius()=default
Destructor.
KronRadius(SeFloat kron_radius, long int flag)
Definition KronRadius.h:44
Base class for all Properties. (has no actual content)
Definition Property.h:33