SourceXtractorPlusPlus  0.11
Please provide a description of the project.
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 
30 namespace SourceXtractor {
31 
36 class KronRadius : public Property {
37 public:
38 
42  virtual ~KronRadius() = default;
43 
44  KronRadius(SeFloat kron_radius, long int flag)
45  : m_kron_radius(kron_radius), m_flag(flag) {}
46 
48  return m_kron_radius;
49  }
50 
51  SeFloat getFlag() const {
52  return m_flag;
53  }
54 
55 private:
57  long int m_flag;
58 };
59 
60 } /* namespace SourceXtractor */
61 
62 #endif /* _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUS_H_ */
SeFloat32 SeFloat
Definition: Types.h:32
Base class for all Properties. (has no actual content)
Definition: Property.h:33
SeFloat getKronRadius() const
Definition: KronRadius.h:47
KronRadius(SeFloat kron_radius, long int flag)
Definition: KronRadius.h:44
SeFloat getFlag() const
Definition: KronRadius.h:51
virtual ~KronRadius()=default
Destructor.