diff options
author | Wim van Aarle <wimvanaarle@gmail.com> | 2015-03-13 10:22:22 +0100 |
---|---|---|
committer | Wim van Aarle <wimvanaarle@gmail.com> | 2015-03-13 10:22:22 +0100 |
commit | d53185395827980e101629c633653cb4284edb06 (patch) | |
tree | 21376b86145441c4e3bea2bc5afa9a3df0539b36 /cuda/2d/astra.cu | |
parent | e8765bcdab3be977cd5536531cacb24bf3378a59 (diff) | |
download | astra-d53185395827980e101629c633653cb4284edb06.tar.gz astra-d53185395827980e101629c633653cb4284edb06.tar.bz2 astra-d53185395827980e101629c633653cb4284edb06.tar.xz astra-d53185395827980e101629c633653cb4284edb06.zip |
removed extraDetectorOffset
Diffstat (limited to 'cuda/2d/astra.cu')
-rw-r--r-- | cuda/2d/astra.cu | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/cuda/2d/astra.cu b/cuda/2d/astra.cu index 0b5be06..dc16a56 100644 --- a/cuda/2d/astra.cu +++ b/cuda/2d/astra.cu @@ -827,17 +827,12 @@ bool convertAstraGeometry(const CVolumeGeometry2D* pVolGeom, // If there are existing detector offsets, or if we need to translate, // we need to return offsets - if (pProjGeom->getExtraDetectorOffset() || offCenter) + if (offCenter) { float* offset = new float[nth]; - if (pProjGeom->getExtraDetectorOffset()) { - for (int i = 0; i < nth; ++i) - offset[i] = pProjGeom->getExtraDetectorOffset()[i]; - } else { - for (int i = 0; i < nth; ++i) - offset[i] = 0.0f; - } + for (int i = 0; i < nth; ++i) + offset[i] = 0.0f; if (offCenter) { float dx = (pVolGeom->getWindowMinX() + pVolGeom->getWindowMaxX()) / 2; |