diff options
author | Thomas White <taw@physics.org> | 2019-08-05 14:24:11 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-16 10:26:59 +0200 |
commit | ff97bef6953ca6de47d6fe8076e2d3444e48dd1c (patch) | |
tree | b0cd764cd8a159167be3953a48125adc4dd79fc8 /libcrystfel/src/cell-utils.h | |
parent | b4e52c888c13287eeca1a6b4222e9f3038db8b51 (diff) |
compare_cell_parameters and compare_reindexed_cell_parameters: Accept 6 tolerances
Diffstat (limited to 'libcrystfel/src/cell-utils.h')
-rw-r--r-- | libcrystfel/src/cell-utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/cell-utils.h b/libcrystfel/src/cell-utils.h index be878c10..42e7214b 100644 --- a/libcrystfel/src/cell-utils.h +++ b/libcrystfel/src/cell-utils.h @@ -88,7 +88,7 @@ extern int forbidden_reflection(UnitCell *cell, extern double cell_get_volume(UnitCell *cell); extern int compare_cell_parameters(UnitCell *cell1, UnitCell *cell2, - float ltl, float atl); + double *tolerance); extern int compare_cell_parameters_and_orientation(UnitCell *cell1, @@ -103,7 +103,7 @@ extern int compare_reindexed_cell_parameters_and_orientation(UnitCell *a, IntegerMatrix **pmb); extern int compare_reindexed_cell_parameters(UnitCell *cell, UnitCell *reference, - double ltl, double atl, int csl, + double *tolerance, int csl, RationalMatrix **pmb); #ifdef __cplusplus |