diff options
author | Thomas White <taw@physics.org> | 2013-08-08 15:46:11 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-09-13 14:29:49 +0200 |
commit | 896ced2c5826b71cf270d75310b8ac0fd495063b (patch) | |
tree | 9646fcc0ad7611cdec07d2e5f81c4c9e715fb73f /libcrystfel/src/cell.c | |
parent | 333565a2b95c6e3aa24ef7c073ab779f3d7b992f (diff) |
Fix incorrect handling of monoclinic C cells
Diffstat (limited to 'libcrystfel/src/cell.c')
-rw-r--r-- | libcrystfel/src/cell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/cell.c b/libcrystfel/src/cell.c index 8c14cce4..44c767f0 100644 --- a/libcrystfel/src/cell.c +++ b/libcrystfel/src/cell.c @@ -125,7 +125,7 @@ UnitCell *cell_new() cell->pointgroup = strdup("1"); cell->lattice_type = L_TRICLINIC; cell->centering = 'P'; - cell->unique_axis = 'c'; + cell->unique_axis = '?'; return cell; } |