diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-02-12 16:14:08 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-02-17 10:36:28 +0100 |
commit | bbd715163e65db08f99b197d4bd736bd35417e98 (patch) | |
tree | fc80a595dfda056dfdda9918bd1b77a1f371ee68 /src/dirax.c | |
parent | 46c61f3a55b59f4388977d5221827e3f6cc9db0f (diff) |
Display the cell from DirAx
Diffstat (limited to 'src/dirax.c')
-rw-r--r-- | src/dirax.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dirax.c b/src/dirax.c index 0849d750..05023584 100644 --- a/src/dirax.c +++ b/src/dirax.c @@ -98,8 +98,10 @@ static void dirax_parseline(const char *line, struct image *image) sscanf(line, "%f %f %f %f %f %f", &d, &d, &d, &cx, &cy, &cz); cell_set_cartesian_c(image->indexed_cell, cx*1e-10, cy*1e-10, cz*1e-10); - STATUS("Read a direct space unit cell from DirAx\n"); - /* FIXME: Do something */ + STATUS("--------------------\n"); + STATUS("The cell from DirAx:\n"); + cell_print(image->indexed_cell); + STATUS("--------------------\n"); image->dirax_read_cell = 0; return; } |