diff options
author | Thomas White <taw@physics.org> | 2020-10-27 15:27:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-10-27 15:27:52 +0100 |
commit | 0972792a889f6614c08380f52b08d919b7da31d1 (patch) | |
tree | e91132744ca73ec94fb41aee1ac2425cf716439a /libcrystfel/src/stream.h | |
parent | ec808350915885ebb5172be7f4d6d1d6e73742e3 (diff) |
Add a new StreamFlag for generating the detgeom structure
This is a hack, and should be replaced by something which gets the
metadata from the stream rather than hitting the read image file every
time.
Diffstat (limited to 'libcrystfel/src/stream.h')
-rw-r--r-- | libcrystfel/src/stream.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.h b/libcrystfel/src/stream.h index 5eadf69b..3d57c7b6 100644 --- a/libcrystfel/src/stream.h +++ b/libcrystfel/src/stream.h @@ -75,6 +75,11 @@ typedef enum { /** Read the peak search results */ STREAM_PEAKS = 4, + /** Reconstruct the detgeom structure, + * and create (blank) data/mask arrays. + * (NB this is (currently) a slow operation) */ + STREAM_DATA_DETGEOM = 8, + } StreamFlags; #ifdef __cplusplus |