From 86dd71e8640394f4e4f5aa71b2e5f51f5fea4a11 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 26 Feb 2010 10:58:13 +0100 Subject: Handle images as floats rather than int16_t Also, remove bloom - it's not a useful model for what really happens and takes too long (this isn't a detector simulation..) --- src/image.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/image.h') diff --git a/src/image.h b/src/image.h index 1c3d2a89..a8103b92 100644 --- a/src/image.h +++ b/src/image.h @@ -70,7 +70,7 @@ struct rvec struct image { int *hdr; /* Actual counts */ - int16_t *data; /* Integer counts after bloom */ + float *data; /* Integer counts after bloom */ double complex *sfacs; double *twotheta; struct molecule *molecule; -- cgit v1.2.3