SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
CoreThresholdPartitionTaskFactory.h
Go to the documentation of this file.
1
23#ifndef _SEIMPLEMENTATION_PLUGIN_CORETHRESHOLDTASKFACTORY_H_
24#define _SEIMPLEMENTATION_PLUGIN_CORETHRESHOLDTASKFACTORY_H_
25
29
30namespace SourceXtractor {
32public:
35
39
44
45 // TaskFactory implementation
47 if (property_id == PropertyId::create<NCorePixel>()) {
49 }
50 else{
51 return nullptr;
52 }
53 }
54
55private:
57}; // end of CoreThresholdPartitionTaskFactory class
58} // namespace SExtractor
59#endif /* _SEIMPLEMENTATION_PLUGIN_CORETHRESHOLDTASKFACTORY_H_ */
void configure(Euclid::Configuration::ConfigManager &manager)
Method which should initialize the object.
virtual std::shared_ptr< Task > createTask(const PropertyId &property_id) const
Returns a Task producing a Property corresponding to the given PropertyId.
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const
Registers all the Configuration dependencies.
Identifier used to set and retrieve properties.
Definition PropertyId.h:40
Creates a Task for computing a given property.
Definition TaskFactory.h:42