diff options
author | Thomas White <taw@physics.org> | 2019-08-14 14:07:31 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-22 17:03:27 +0200 |
commit | e3f4046056cf92ce5e40e5e715cbcd53df7b0621 (patch) | |
tree | eb4db521a5c1ab85e011852d63d1091f1b01649f /libcrystfel/src/cell-utils.h | |
parent | 0b16a4aa50bfe233d81077b1661c57b4b0ef0ef2 (diff) |
Framework for new unit cell comparison function
Diffstat (limited to 'libcrystfel/src/cell-utils.h')
-rw-r--r-- | libcrystfel/src/cell-utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/cell-utils.h b/libcrystfel/src/cell-utils.h index fa577269..e46d860b 100644 --- a/libcrystfel/src/cell-utils.h +++ b/libcrystfel/src/cell-utils.h @@ -90,9 +90,6 @@ extern double cell_get_volume(UnitCell *cell); extern int compare_cell_parameters(UnitCell *cell, UnitCell *reference, double *tolerance); -extern int compare_permuted_cell_parameters(UnitCell *cell, UnitCell *reference, - double *tolerance, IntegerMatrix **pmb); - extern int compare_cell_parameters_and_orientation(UnitCell *cell, UnitCell *reference, const double ltl, @@ -108,6 +105,9 @@ extern int compare_reindexed_cell_parameters(UnitCell *cell, UnitCell *reference double *tolerance, int csl, RationalMatrix **pmb); +extern int compare_lattices(UnitCell *cell_in, UnitCell *reference_in, + double *tolerance, RationalMatrix **pmb); + #ifdef __cplusplus } #endif |