--------------------------------------------------------------------------------------- Initialize - Config
| 81 | //--------------------------------------------------------------------------------------- |
| 82 | // Initialize - Config |
| 83 | bool 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++ |
nothing calls this directly
no outgoing calls
no test coverage detected