diff options
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 */ |