SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
ApertureFlagTask.h
Go to the documentation of this file.
1
17/*
18 * ApertureFlagTask.h
19 *
20 * Created on: Oct 09, 2018
21 * Author: Alejandro Alvarez Ayllon
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_APERTUREPHOTOMETRY_APERTUREFLAGTASK_H_
25#define _SEIMPLEMENTATION_PLUGIN_APERTUREPHOTOMETRY_APERTUREFLAGTASK_H_
26
29
30namespace SourceXtractor {
31
33public:
34
35 virtual ~ApertureFlagTask() = default;
36
37 explicit ApertureFlagTask(const std::vector<SeFloat> &apertures)
38 : m_apertures(apertures) {}
39
40 void computeProperties(SourceInterface &source) const override;
41
42private:
44};
45
46}
47
48#endif /* _SEIMPLEMENTATION_PLUGIN_APERTUREPHOTOMETRY_APERTUREFLAGTASK_H_ */
ApertureFlagTask(const std::vector< SeFloat > &apertures)
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
std::vector< SeFloat > m_apertures
virtual ~ApertureFlagTask()=default
The SourceInterface is an abstract "source" that has properties attached to it.
A Task that acts on a Source to compute one or more properties.
Definition SourceTask.h:36