diff options
author | Thomas White <taw@physics.org> | 2015-03-18 11:16:44 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-03-18 14:54:58 +0100 |
commit | 10e50c61ecbc07e58639f28339dfa10ac22218ce (patch) | |
tree | 12560e779aa207805ae9032191a2b31d72828276 /libcrystfel/src/crystal.h | |
parent | 27da60fe69a1a755226f11607003aa9d7ae059c9 (diff) |
Add crystal_{get,set}_notes()
Diffstat (limited to 'libcrystfel/src/crystal.h')
-rw-r--r-- | libcrystfel/src/crystal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcrystfel/src/crystal.h b/libcrystfel/src/crystal.h index 6863f666..92f60fc3 100644 --- a/libcrystfel/src/crystal.h +++ b/libcrystfel/src/crystal.h @@ -65,6 +65,7 @@ extern double crystal_get_osf(Crystal *cryst); extern double crystal_get_Bfac(Crystal *cryst); extern struct image *crystal_get_image(Crystal *cryst); extern double crystal_get_mosaicity(Crystal *cryst); +extern const char *crystal_get_notes(Crystal *cryst); extern void crystal_set_cell(Crystal *cryst, UnitCell *cell); extern void crystal_set_profile_radius(Crystal *cryst, double r); @@ -79,6 +80,7 @@ extern void crystal_set_osf(Crystal *cryst, double osf); extern void crystal_set_Bfac(Crystal *cryst, double B); extern void crystal_set_image(Crystal *cryst, struct image *image); extern void crystal_set_mosaicity(Crystal *cryst, double m); +extern void crystal_set_notes(Crystal *cryst, const char *notes); #ifdef __cplusplus } |