aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/cell-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel/src/cell-utils.c')
-rw-r--r--libcrystfel/src/cell-utils.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/libcrystfel/src/cell-utils.c b/libcrystfel/src/cell-utils.c
index 1bc937f9..a49f75fe 100644
--- a/libcrystfel/src/cell-utils.c
+++ b/libcrystfel/src/cell-utils.c
@@ -224,14 +224,14 @@ void cell_print(UnitCell *cell)
if ( cell_has_parameters(cell) ) {
if ( right_handed(cell) ) {
- STATUS(", right handed");
+ STATUS(", right handed.\n");
} else {
- STATUS(", left handed");
+ STATUS(", left handed.\n");
}
+ } else {
+ STATUS(".\n");
}
- STATUS(", point group '%s'.\n", cell_get_pointgroup(cell));
-
if ( cell_has_parameters(cell) ) {
cell_get_parameters(cell, &a, &b, &c, &alpha, &beta, &gamma);
@@ -1135,7 +1135,6 @@ UnitCell *load_cell_from_pdb(const char *filename)
if ( strlen(line) > 65 ) {
cell_set_centering(cell, line[55]);
} else {
- cell_set_pointgroup(cell, "1");
ERROR("CRYST1 line without centering.\n");
}