From 85cf27f7c91e452114171f113faaa5187bfb41ce Mon Sep 17 00:00:00 2001 From: Thomas White Date: Tue, 27 Feb 2018 16:48:03 +0100 Subject: Add indices to spectrum graph --- src/post-refinement.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/post-refinement.c b/src/post-refinement.c index 5c6faeaa..60db4890 100644 --- a/src/post-refinement.c +++ b/src/post-refinement.c @@ -521,7 +521,7 @@ void write_specgraph(Crystal *crystal, const RefList *full, if ( cycle == 0 ) { fprintf(fh, "Image: %s %s\n", image->filename, get_event_string(image->event)); - fprintf(fh, "khalf/m 1/d(m) pcalc pobs iteration\n"); + fprintf(fh, "khalf/m 1/d(m) pcalc pobs iteration h k l\n"); } cell = crystal_get_cell(crystal); @@ -556,8 +556,8 @@ void write_specgraph(Crystal *crystal, const RefList *full, pobs = Ipart / Ifull; pcalc = get_partiality(refl); - fprintf(fh, "%e %e %f %f %s\n", get_khalf(refl), 2.0*res, - pcalc, pobs, ins); + fprintf(fh, "%e %e %f %f %s %4i %4i %4i\n", + get_khalf(refl), 2.0*res, pcalc, pobs, ins, h, k, l); } -- cgit v1.2.3