diff options
author | Thomas White <taw@physics.org> | 2011-03-15 15:56:26 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:20 +0100 |
commit | b8ac0faea1abb2e3033140dcd157160bfa98d251 (patch) | |
tree | e62dd9269372375c95936d72c33187a5945edf29 /src/reflist-utils.h | |
parent | be49b97c792edc33d908965823f73f33b830d557 (diff) |
WIP on new stream format in process_hkl
Diffstat (limited to 'src/reflist-utils.h')
-rw-r--r-- | src/reflist-utils.h | 30 |
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 */ |