aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/cell-utils.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-08-08 11:05:09 +0200
committerThomas White <taw@physics.org>2019-08-16 10:26:59 +0200
commitf6c9932aa1b41e36178a2471e6728c04fb45289a (patch)
treebe3993ec0654ee2f76ff14363a4f30496e38de93 /libcrystfel/src/cell-utils.h
parentea74744a59728bd375dda10a9386b502eb5056c2 (diff)
Clarify cell vs reference in comparison functions. Also reindexed vs permuted
Diffstat (limited to 'libcrystfel/src/cell-utils.h')
-rw-r--r--libcrystfel/src/cell-utils.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libcrystfel/src/cell-utils.h b/libcrystfel/src/cell-utils.h
index a489a6d8..fa577269 100644
--- a/libcrystfel/src/cell-utils.h
+++ b/libcrystfel/src/cell-utils.h
@@ -87,27 +87,27 @@ extern int forbidden_reflection(UnitCell *cell,
extern double cell_get_volume(UnitCell *cell);
-extern int compare_cell_parameters(UnitCell *cell1, UnitCell *cell2,
+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 *cell1,
- UnitCell *cell2,
+extern int compare_cell_parameters_and_orientation(UnitCell *cell,
+ UnitCell *reference,
const double ltl,
const double atl);
-extern int compare_reindexed_cell_parameters_and_orientation(UnitCell *a,
- UnitCell *b,
- double ltl,
- double atl,
- IntegerMatrix **pmb);
+extern int compare_permuted_cell_parameters_and_orientation(UnitCell *cell,
+ UnitCell *reference,
+ double ltl,
+ double atl,
+ IntegerMatrix **pmb);
extern int compare_reindexed_cell_parameters(UnitCell *cell, UnitCell *reference,
double *tolerance, int csl,
RationalMatrix **pmb);
-extern int compare_permuted_cell_parameters(UnitCell *cell, UnitCell *reference,
- double *tolerance, IntegerMatrix **pmb);
#ifdef __cplusplus
}
#endif