SourceXtractorPlusPlus  0.14
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PsfTaskFactory.h
Go to the documentation of this file.
1 
17 /*
18  * PsfTaskFactory.h
19  *
20  * Created on: Jun 25, 2018
21  * Author: Alejandro Álvarez Ayllón
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_PSF_PSFTASKFACTORY_H_
25 #define _SEIMPLEMENTATION_PLUGIN_PSF_PSFTASKFACTORY_H_
26 
27 #include <map>
28 
31 #include "PsfPluginConfig.h"
32 
33 namespace SourceXtractor {
34 
35 class PsfTaskFactory: public TaskFactory {
36 public:
37  virtual ~PsfTaskFactory() = default;
38 
40 
41  void configure(Euclid::Configuration::ConfigManager& manager) override;
42 
43  virtual std::shared_ptr<Task> createTask(const PropertyId& property_id) const override;
44 
45 private:
47 };
48 
49 } // end SourceXtractor
50 
51 #endif //_SEIMPLEMENTATION_PLUGIN_PSF_PSFTASKFACTORY_H_
std::map< int, std::shared_ptr< VariablePsf > > m_vpsf
STL class.
virtual std::shared_ptr< Task > createTask(const PropertyId &property_id) const override
Returns a Task producing a Property corresponding to the given PropertyId.
virtual ~PsfTaskFactory()=default
Creates a Task for computing a given property.
Definition: TaskFactory.h:42
Identifier used to set and retrieve properties.
Definition: PropertyId.h:40
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.