SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
GroupTask.h
Go to the documentation of this file.
1
23#ifndef _SEFRAMEWORK_TASK_GROUPTASK_H
24#define _SEFRAMEWORK_TASK_GROUPTASK_H
25
28
29namespace SourceXtractor {
30
36class GroupTask : public Task {
37
38public:
39
43 virtual ~GroupTask() = default;
44
47
48
49private:
50
51}; /* End of GroupTask class */
52
53} /* namespace SourceXtractor */
54
55
56#endif
A Task that acts on a SourceGroup to compute one or more properties.
Definition GroupTask.h:36
virtual ~GroupTask()=default
Destructor.
virtual void computeProperties(SourceGroupInterface &group) const =0
Computes one or more properties for the SourceGroup and/or the Sources it contains.
Defines the interface used to group sources.
Basic interface for a Task that is used to compute properties.
Definition Task.h:35