---------------------------------------------------------------------------------------- Constructor
| 37 | //---------------------------------------------------------------------------------------- |
| 38 | // Constructor |
| 39 | CReconstructionAlgorithm3D::CReconstructionAlgorithm3D() |
| 40 | : m_pProjector(nullptr), |
| 41 | m_pSinogram(nullptr), |
| 42 | m_pReconstruction(nullptr), |
| 43 | m_bUseMinConstraint(false), |
| 44 | m_fMinValue(0.0f), |
| 45 | m_bUseMaxConstraint(false), |
| 46 | m_fMaxValue(0.0f), |
| 47 | m_pReconstructionMask(nullptr), |
| 48 | m_bUseReconstructionMask(false), |
| 49 | m_pSinogramMask(nullptr), |
| 50 | m_bUseSinogramMask(false) |
| 51 | { |
| 52 | |
| 53 | } |
| 54 | |
| 55 | //---------------------------------------------------------------------------------------- |
| 56 | // Destructor |
nothing calls this directly
no outgoing calls
no test coverage detected