From 8941c1ba4ba4bc4ed00b41db371fb9d75ac137ca Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 26 May 2010 18:51:23 +0200 Subject: Add peak sanity check --- src/image.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/image.h') diff --git a/src/image.h b/src/image.h index 0479debc..85265028 100644 --- a/src/image.h +++ b/src/image.h @@ -67,6 +67,16 @@ struct rvec }; +struct reflhit { + signed int h; + signed int k; + signed int l; + double min_distance; + int x; + int y; +}; + + /* Structure describing an image */ struct image { @@ -77,6 +87,8 @@ struct image { int ncells; struct detector det; const char *filename; + struct reflhit *hits; + int n_hits; int id; -- cgit v1.2.3