aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-02-08 16:19:35 -0800
committerThomas White <taw@physics.org>2013-02-08 16:19:35 -0800
commit0ad51536eb7a4d4bf13909cf50382cebb043f7a8 (patch)
tree82aa41e0e7c200296df9a8b01c0bfcbe6a1debf7 /libcrystfel/src/image.h
parent13116e93b01faee7826b5ba95a1dbf5fc3d64b45 (diff)
Count saturated peaks and record in the file
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r--libcrystfel/src/image.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h
index 8f9e296f..91950e76 100644
--- a/libcrystfel/src/image.h
+++ b/libcrystfel/src/image.h
@@ -94,6 +94,8 @@ typedef struct _imagefeaturelist ImageFeatureList;
* int width;
* int height;
*
+ * long long int num_peaks;
+ * long long int num_saturated_peaks;
* ImageFeatureList *features;
* };
* </programlisting>
@@ -144,6 +146,8 @@ struct image {
int height;
/* Detected peaks */
+ long long int num_peaks;
+ long long int num_saturated_peaks;
ImageFeatureList *features;
};