diff options
author | Thomas White <taw@physics.org> | 2013-01-30 11:09:57 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-01-30 11:09:57 +0100 |
commit | 303a4c9e6cdf72dc0164b015a833a2d34cbbba02 (patch) | |
tree | ee0a69e8f9da9063f3ea168bd184f6e0d57d57f8 /libcrystfel/src/crystal.h | |
parent | 9ce39259c3d6bb1b76efbe02f84a4e10a30be13d (diff) |
Stream changes
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 466116a4..e5e40589 100644 --- a/libcrystfel/src/crystal.h +++ b/libcrystfel/src/crystal.h @@ -53,5 +53,14 @@ 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); +extern double crystal_get_resolution_limit(Crystal *cryst); +extern long long int crystal_get_num_saturated_reflections(Crystal *cryst); + +extern void crystal_set_cell(Crystal *cryst, UnitCell *cell); +extern void crystal_set_profile_radius(Crystal *cryst, double r); +extern void crystal_set_reflections(Crystal *cryst, RefList *reflist); +extern void crystal_set_resolution_limit(Crystal *cryst, double res); +extern void crystal_set_num_saturated_reflections(Crystal *cryst, int n); + #endif /* CRYSTAL_H */ |