aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-07-09 16:56:07 +0200
committerThomas White <taw@physics.org>2018-07-09 16:56:30 +0200
commitae98d68749f58d63b2deb0c2d056fb567046bf8b (patch)
tree56d214da068a959bf16ba913ae5cf866859fe6b7 /libcrystfel/src/image.h
parent177af3bd9f28821f153b1ed4e447b696242a8923 (diff)
Add number of indexing attempts to stream
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r--libcrystfel/src/image.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h
index 40717ab3..580e3d6c 100644
--- a/libcrystfel/src/image.h
+++ b/libcrystfel/src/image.h
@@ -148,6 +148,7 @@ struct beam_params
* @crystals: Array of crystals in the image
* @n_crystals: The number of crystals in the image
* @indexed_by: Indexing method which indexed this pattern
+ * @n_indexing_tries: Number of times the indexer was tried before indexing
* @det: Detector structure
* @beam: Beam parameters structure
* @filename: Filename for the image file
@@ -193,6 +194,7 @@ struct image {
Crystal **crystals;
int n_crystals;
IndexingMethod indexed_by;
+ int n_indexing_tries;
struct detector *det;
struct beam_params *beam; /* The nominal beam parameters */