SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
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
33namespace SourceXtractor {
34
48
49} // end SourceXtractor
50
51#endif //_SEIMPLEMENTATION_PLUGIN_PSF_PSFTASKFACTORY_H_
Identifier used to set and retrieve properties.
Definition PropertyId.h:40
virtual ~PsfTaskFactory()=default
std::map< int, std::shared_ptr< Psf > > m_vpsf
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.
Creates a Task for computing a given property.
Definition TaskFactory.h:42