SourceXtractorPlusPlus  0.15
Please provide a description of the project.
MeasurementFactory.h
Go to the documentation of this file.
1 
17 /*
18  * MeasurementFactory.h
19  *
20  * Created on: May 17, 2018
21  * Author: mschefer
22  */
23 
24 #ifndef _SEIMPLEMENTATION_MEASUREMENT_MEASUREMENTFACTORY_H_
25 #define _SEIMPLEMENTATION_MEASUREMENT_MEASUREMENTFACTORY_H_
26 
31 
32 namespace SourceXtractor {
33 
40 
41 public:
42 
44  : m_output_registry(output_registry), m_threads_nb(0) {}
45 
47 
48  // Implementation of the Configurable interface
49  void configure(Euclid::Configuration::ConfigManager& manager) override;
51 
52 
53 private:
57 
58  unsigned int m_threads_nb;
59 };
60 
61 }
62 
63 
64 #endif /* _SEIMPLEMENTATION_MEASUREMENT_MEASUREMENTFACTORY_H_ */
SourceXtractor::MeasurementFactory::m_output_properties
std::vector< std::string > m_output_properties
Definition: MeasurementFactory.h:54
std::shared_ptr< OutputRegistry >
SourceXtractor::MeasurementFactory::MeasurementFactory
MeasurementFactory(std::shared_ptr< OutputRegistry > output_registry)
Definition: MeasurementFactory.h:43
SourceXtractor::MeasurementFactory::configure
void configure(Euclid::Configuration::ConfigManager &manager) override
Method which should initialize the object.
Definition: MeasurementFactory.cpp:48
Euclid::Configuration::ConfigManager
std::vector< std::string >
SourceXtractor::MeasurementFactory
Definition: MeasurementFactory.h:39
SourceXtractor::MeasurementFactory::m_threads_nb
unsigned int m_threads_nb
Definition: MeasurementFactory.h:58
SourceXtractor
Definition: Aperture.h:30
SourceXtractor::MeasurementFactory::m_thread_pool
std::shared_ptr< Euclid::ThreadPool > m_thread_pool
Definition: MeasurementFactory.h:56
Measurement.h
SourceXtractor::MeasurementFactory::m_output_registry
std::shared_ptr< OutputRegistry > m_output_registry
Definition: MeasurementFactory.h:55
SourceXtractor::MeasurementFactory::reportConfigDependencies
void reportConfigDependencies(Euclid::Configuration::ConfigManager &manager) const override
Registers all the Configuration dependencies.
Definition: MeasurementFactory.cpp:43
Output.h
Configurable.h
ThreadPool.h
SourceXtractor::MeasurementFactory::getMeasurement
std::unique_ptr< Measurement > getMeasurement() const
Definition: MeasurementFactory.cpp:34
std::unique_ptr
STL class.
SourceXtractor::Configurable
Interface of objects which can be configured.
Definition: Configurable.h:37