diff options
Diffstat (limited to 'cuda/2d')
| -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; | 
