aboutsummaryrefslogtreecommitdiff
path: root/src/reflist-utils.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-03-15 15:56:26 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:20 +0100
commitb8ac0faea1abb2e3033140dcd157160bfa98d251 (patch)
treee62dd9269372375c95936d72c33187a5945edf29 /src/reflist-utils.h
parentbe49b97c792edc33d908965823f73f33b830d557 (diff)
WIP on new stream format in process_hkl
Diffstat (limited to 'src/reflist-utils.h')
-rw-r--r--src/reflist-utils.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/reflist-utils.h b/src/reflist-utils.h
new file mode 100644
index 00000000..d5c1e655
--- /dev/null
+++ b/src/reflist-utils.h
@@ -0,0 +1,30 @@
+/*
+ * reflist-utils.h
+ *
+ * Utilities to complement the core reflist.c
+ *
+ * (c) 2006-2011 Thomas White <taw@physics.org>
+ *
+ * Part of CrystFEL - crystallography with a FEL
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef REFLIST_UTILS_H
+#define REFLIST_UTILS_H
+
+
+#include "reflist.h"
+#include "cell.h"
+
+
+extern void write_reflections_to_file(FILE *fh, RefList *list, UnitCell *cell);
+
+extern int write_reflist(const char *filename, RefList *list,
+ UnitCell *cell);
+
+
+#endif /* REFLIST_UTILS_H */