SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
KronRadiusTask.h
Go to the documentation of this file.
1
17/*
18 * AperturePhotometryTask.h
19 *
20 * Created on: Sep 22, 2016
21 * Author: mschefer
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUSTASK_H_
25#define _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUSTASK_H_
26
27//#include <memory>
28
31
32namespace SourceXtractor {
33
34class KronRadiusTask : public SourceTask {
35public:
36
38 virtual ~KronRadiusTask() = default;
39
41
42 void computeProperties(SourceInterface& source) const override;
43
44};
45}
46
47#endif /* _SEIMPLEMENTATION_PLUGIN_KRONRADIUS_KRONRADIUSTASK_H_ */
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
virtual ~KronRadiusTask()=default
Destructor.
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