diff options
author | Thomas White <taw@physics.org> | 2013-01-28 11:59:01 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-01-28 11:59:01 +0100 |
commit | 082894733e02420a25227467ee203070e4d5d684 (patch) | |
tree | 74fef8507032453da688f1caddf473cb197ce5e6 /libcrystfel/src/crystal.h | |
parent | 91f2cbf5d3dcb42b7e6762fb54734096425f4315 (diff) |
Update geometry.c
Diffstat (limited to 'libcrystfel/src/crystal.h')
-rw-r--r-- | libcrystfel/src/crystal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libcrystfel/src/crystal.h b/libcrystfel/src/crystal.h index 4f53eead..466116a4 100644 --- a/libcrystfel/src/crystal.h +++ b/libcrystfel/src/crystal.h @@ -33,6 +33,11 @@ #include <config.h> #endif + +#include "cell.h" +#include "reflist.h" + + /** * Crystal: * @@ -45,4 +50,8 @@ typedef struct _crystal Crystal; extern Crystal *crystal_new(void); extern void crystal_free(Crystal *cryst); +extern UnitCell *crystal_get_cell(Crystal *cryst); +extern double crystal_get_profile_radius(Crystal *cryst); +extern RefList *crystal_get_reflections(Crystal *cryst); + #endif /* CRYSTAL_H */ |