MCPcopy Create free account
hub / github.com/astra-toolbox/astra-toolbox / initialize

Method initialize

src/BackProjectionAlgorithm.cpp:83–97  ·  view source on GitHub ↗

--------------------------------------------------------------------------------------- Initialize - Config

Source from the content-addressed store, hash-verified

81//---------------------------------------------------------------------------------------
82// Initialize - Config
83bool CBackProjectionAlgorithm::initialize(const Config& _cfg)
84{
85 assert(!m_bIsInitialized);
86
87 ConfigReader<CAlgorithm> CR("BackProjectionAlgorithm", this, _cfg);
88
89 // initialization of parent class
90 if (!CReconstructionAlgorithm2D::initialize(_cfg)) {
91 return false;
92 }
93
94 // success
95 m_bIsInitialized = _check();
96 return m_bIsInitialized;
97}
98
99//---------------------------------------------------------------------------------------
100// Initialize - C++

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected