SourceXtractorPlusPlus  0.10
Please provide a description of the project.
SE2BackgroundConfig.h
Go to the documentation of this file.
1 
17 /*
18  * @file BackgroundConfiguration.h
19  * @author nikoapos
20  */
21 
22 #ifndef _SEIMPLEMENTATION_SE2BACKGROUNDCONFIG_H
23 #define _SEIMPLEMENTATION_SE2BACKGROUNDCONFIG_H
24 
27 
28 namespace SourceXtractor {
29 
31 
32 public:
33 
34  SE2BackgroundConfig(long manager_id);
35 
36  virtual ~SE2BackgroundConfig() = default;
37 
39 
40  void initialize(const UserValues& args) override;
41 
43  return m_cell_size;
44  }
45 
47  return m_smoothing_box;
48  }
49 
50 private:
53 
54 };
55 
56 } /* namespace SourceXtractor */
57 
58 #endif /* _SEIMPLEMENTATION_SE2BACKGROUNDCONFIG_H */
59 
std::string
STL class.
SourceXtractor::SE2BackgroundConfig::initialize
void initialize(const UserValues &args) override
Definition: SE2BackgroundConfig.cpp:48
SourceXtractor::SE2BackgroundConfig::m_smoothing_box
std::string m_smoothing_box
Definition: SE2BackgroundConfig.h:52
SourceXtractor
Definition: Aperture.h:30
SourceXtractor::SE2BackgroundConfig::getSmoothingBox
std::string getSmoothingBox() const
Definition: SE2BackgroundConfig.h:46
SourceXtractor::SE2BackgroundConfig::getProgramOptions
std::map< std::string, Configuration::OptionDescriptionList > getProgramOptions() override
Definition: SE2BackgroundConfig.cpp:39
SourceXtractor::SE2BackgroundConfig::m_cell_size
std::string m_cell_size
Definition: SE2BackgroundConfig.h:51
Image.h
std::map
STL class.
SourceXtractor::SE2BackgroundConfig::~SE2BackgroundConfig
virtual ~SE2BackgroundConfig()=default
SourceXtractor::SE2BackgroundConfig::SE2BackgroundConfig
SE2BackgroundConfig(long manager_id)
Definition: SE2BackgroundConfig.cpp:33
Configuration.h
Euclid::Configuration::Configuration
SourceXtractor::SE2BackgroundConfig::getCellSize
std::string getCellSize() const
Definition: SE2BackgroundConfig.h:42
SourceXtractor::SE2BackgroundConfig
Definition: SE2BackgroundConfig.h:30