aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/stream.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-02-05 18:05:30 +0100
committerThomas White <taw@physics.org>2013-02-05 18:05:30 +0100
commit2f06e6a1abf28a22cf78a6c3d89596bec2a6a8c5 (patch)
treec7c8beda3593ae1dfe31a646f51787c992f59eef /libcrystfel/src/stream.h
parent2ce85a95d86e350b785d206405e97d7317672188 (diff)
Fixes for indexing pipeline
Diffstat (limited to 'libcrystfel/src/stream.h')
-rw-r--r--libcrystfel/src/stream.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libcrystfel/src/stream.h b/libcrystfel/src/stream.h
index 4d561cd2..cdce0ea2 100644
--- a/libcrystfel/src/stream.h
+++ b/libcrystfel/src/stream.h
@@ -38,6 +38,16 @@
struct image;
struct hdfile;
+#define CHUNK_START_MARKER "----- Begin chunk -----"
+#define CHUNK_END_MARKER "----- End chunk -----"
+#define PEAK_LIST_START_MARKER "Peaks from peak search"
+#define PEAK_LIST_END_MARKER "End of peak list"
+#define CRYSTAL_START_MARKER "--- Begin crystal"
+#define CRYSTAL_END_MARKER "--- End crystal"
+#define REFLECTION_START_MARKER "Reflections measured after indexing"
+/* REFLECTION_END_MARKER is over in reflist-utils.h because it is also
+ * used to terminate a standalone list of reflections */
+
typedef struct _stream Stream;
extern Stream *open_stream_for_read(const char *filename);