From ef92cb3eebfb74c865cf0e10266ba8c46ffc8a9a Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 27 Nov 2009 16:10:57 +0100 Subject: Poisson function returns integer count - do all downstream calculations as integers --- src/image.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/image.h') diff --git a/src/image.h b/src/image.h index e9db7cad..a7c6c355 100644 --- a/src/image.h +++ b/src/image.h @@ -62,8 +62,8 @@ struct threevec /* Structure describing an image */ struct image { - double *hdr; /* Actual counts */ - uint16_t *data; /* Integer counts after DQE/bloom */ + int *hdr; /* Actual counts */ + uint16_t *data; /* Integer counts after bloom */ double complex *sfacs; struct threevec *qvecs; double *twotheta; -- cgit v1.2.3