SourceXtractorPlusPlus  0.13
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AutoPhotometryFlagTask.h
Go to the documentation of this file.
1 
17 /*
18  * AutoPhotometryFlagTask.h
19  *
20  * Created on: Oct 10, 2018
21  * Author: Alejandro Alvarez Ayllon
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYFLAGTASK_H_
25 #define _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYFLAGTASK_H_
26 
27 #include "SEUtils/Types.h"
29 
30 namespace SourceXtractor {
31 
33 public:
34 
35  virtual ~AutoPhotometryFlagTask() = default;
36 
37  AutoPhotometryFlagTask(SeFloat kron_factor, SeFloat kron_minrad)
38  : m_kron_factor{kron_factor}, m_kron_minrad{kron_minrad} {}
39 
40  virtual void computeProperties(SourceInterface& source) const override;
41 
42 private:
45 };
46 
47 } // end SourceXtractor
48 
49 #endif // _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYFLAGTASK_H_
SeFloat32 SeFloat
Definition: Types.h:32
A Task that acts on a Source to compute one or more properties.
Definition: SourceTask.h:36
virtual void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
AutoPhotometryFlagTask(SeFloat kron_factor, SeFloat kron_minrad)