aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-11-27 16:10:57 +0100
committerThomas White <taw@physics.org>2009-11-27 16:10:57 +0100
commitef92cb3eebfb74c865cf0e10266ba8c46ffc8a9a (patch)
tree6e601f0a02cdf240ec065f71ca58a0ad31d3e76d /src/image.h
parent93cc3f1334294f8737dc7167f361af1209f3eaa8 (diff)
Poisson function returns integer count - do all downstream calculations as integers
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h4
1 files changed, 2 insertions, 2 deletions
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;