blob: b7ecd3ea8af71b2399704f4364f15346f785113a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/*
* 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"
#define REFLECTION_END_MARKER "End of reflections"
extern void write_reflections_to_file(FILE *fh, RefList *list, UnitCell *cell);
extern int write_reflist(const char *filename, RefList *list, UnitCell *cell);
extern RefList *read_reflections_from_file(FILE *fh);
extern RefList *read_reflections(const char *filename);
extern double *intensities_from_list(RefList *list);
extern double *phases_from_list(RefList *list);
extern unsigned char *flags_from_list(RefList *list);
extern int check_list_symmetry(RefList *list, const char *sym);
extern int find_equiv_in_list(RefList *list, signed int h, signed int k,
signed int l, const char *sym, signed int *hu,
signed int *ku, signed int *lu);
#endif /* REFLIST_UTILS_H */
|