From 71e7acb7668073b8f37565aa59bfd67d3b4cd166 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 27 Aug 2019 10:26:36 +0200 Subject: cell_tool: Clarify interpretation of tolerances --- src/cell_tool.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/cell_tool.c') diff --git a/src/cell_tool.c b/src/cell_tool.c index 5fef5d9f..83056a6f 100644 --- a/src/cell_tool.c +++ b/src/cell_tool.c @@ -98,6 +98,7 @@ static int comparecells(UnitCell *cell, const char *comparecell, tolerance[5] = atl; STATUS("------------------> Reindexed (strictly the same lattice):\n"); + STATUS("Tolerances applied directly to the unit cells\n"); if ( !compare_reindexed_cell_parameters(cell, cell2, tolerance, &m) ) { STATUS("No relationship found between lattices.\n"); } else { @@ -117,6 +118,7 @@ static int comparecells(UnitCell *cell, const char *comparecell, STATUS("------------------> Derivative lattice " "(strictly the same lattice):\n"); + STATUS("Tolerances applied to primitive versions of the unit cells\n"); if ( !compare_derivative_cell_parameters(cell, cell2, tolerance, 0, &m) ) { STATUS("No relationship found between lattices.\n"); } else { @@ -136,6 +138,7 @@ static int comparecells(UnitCell *cell, const char *comparecell, STATUS("------------------> Coincidence site lattice " "(not strictly the same lattice):\n"); + STATUS("Tolerances applied to primitive versions of the unit cells\n"); if ( !compare_derivative_cell_parameters(cell, cell2, tolerance, 1, &m) ) { STATUS("No relationship found between lattices.\n"); return 0; -- cgit v1.2.3