--------------------------------------------------------------------------------------- Initialize - Config
| 53 | //--------------------------------------------------------------------------------------- |
| 54 | // Initialize - Config |
| 55 | bool CCudaBackProjectionAlgorithm::initialize(const Config& _cfg) |
| 56 | { |
| 57 | assert(!m_bIsInitialized); |
| 58 | |
| 59 | ConfigReader<CAlgorithm> CR("CudaBackProjectionAlgorithm", this, _cfg); |
| 60 | |
| 61 | m_bIsInitialized = CCudaReconstructionAlgorithm2D::initialize(_cfg); |
| 62 | |
| 63 | if (!m_bIsInitialized) |
| 64 | return false; |
| 65 | |
| 66 | return true; |
| 67 | } |
| 68 | |
| 69 | //--------------------------------------------------------------------------------------- |
| 70 | // Initialize - C++ |
nothing calls this directly
no outgoing calls
no test coverage detected