aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-02-11 12:37:03 -0800
committerThomas White <taw@physics.org>2012-02-22 15:27:14 +0100
commitaab9901f18326214746402650179a13f22770118 (patch)
tree445663c658cd5a1cb58304145c3878ce31126a0a /src/image.h
parent91ffa38ff55e08ed7faf60b2e6b1c8ba27e89f5c (diff)
Make find_projected_peaks() behave like find_intersections()
Also make sure output_intensities() deals only with integration
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/image.h b/src/image.h
index ce0e7343..e0c190f2 100644
--- a/src/image.h
+++ b/src/image.h
@@ -65,7 +65,6 @@ struct image {
struct detector *det;
struct beam_params *beam; /* The nominal beam parameters */
char *filename;
- RefList *reflections;
int id; /* ID number of the thread
* handling this image */
@@ -86,6 +85,10 @@ struct image {
int width;
int height;
+ /* Reflections (used for scaling ONLY) */
+ RefList *reflections;
+
+ /* Detected peaks */
ImageFeatureList *features;
};