SourceXtractorPlusPlus 0.19.2
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
AutoPhotometryTaskFactory.h
Go to the documentation of this file.
1
17/*
18 * AutoPhotometryTaskFactory.h
19 *
20 * Created on: Jul 18, 2018
21 * Author: mkuemmel@usm.lmu.de
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYTASKFACTORY_H_
25#define _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYTASKFACTORY_H_
26
27#include "SEUtils/Types.h"
29
30
31namespace SourceXtractor {
32
34public:
36
38 virtual ~AutoPhotometryTaskFactory() = default;
39
41
42 void configure(Euclid::Configuration::ConfigManager& manager) override;
43
45
46 // TaskFactory implementation
47 std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
48
49private:
56};
57
58}
59
60#endif /* _SEIMPLEMENTATION_PLUGIN_AUTOPHOTOMETRY_AUTOPHOTOMETRYTASKFACTORY_H_ */
virtual ~AutoPhotometryTaskFactory()=default
Destructor.
std::vector< std::pair< std::string, unsigned int > > m_auto_names
void registerPropertyInstances(OutputRegistry &) override
std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
Identifier used to set and retrieve properties.
Definition PropertyId.h:40
Creates a Task for computing a given property.
Definition TaskFactory.h:42
SeFloat32 SeFloat
Definition Types.h:32