From 18e61c8671d72f56f6203fd49740e501cb53b784 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 26 Oct 2010 14:57:51 +0200 Subject: Return zero if reflection is out of range --- data/diffraction.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data') diff --git a/data/diffraction.cl b/data/diffraction.cl index fe0604d8..7ccfa813 100644 --- a/data/diffraction.cl +++ b/data/diffraction.cl @@ -117,7 +117,7 @@ float get_intensity(global float *intensities, float16 cell, float4 q) /* Return a silly value if indices are out of range */ if ( (abs(h) > INDMAX) || (abs(k) > INDMAX) || (abs(l) > INDMAX) ) { - return 1000000.0; + return 0.0; } h = (h>=0) ? h : h+IDIM; -- cgit v1.2.3