diff options
author | Valerio Mariani <valerio.mariani@desy.de> | 2014-04-02 09:22:58 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-09-05 18:04:14 +0200 |
commit | ae9fa9e6bfd1ed98a2b146d2e228c69a9cd651cc (patch) | |
tree | 2b5ac2231c6a23320a25dc490ba85331d91c0fb8 | |
parent | b25636f0d9810432f46bdf528b597a2f56689630 (diff) |
Better alignment of stream file elements
-rw-r--r-- | libcrystfel/src/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/stream.c b/libcrystfel/src/stream.c index 5d30b796..59525c04 100644 --- a/libcrystfel/src/stream.c +++ b/libcrystfel/src/stream.c @@ -188,7 +188,7 @@ static void write_peaks_2_3(struct image *image, FILE *ofh) int i; fprintf(ofh, PEAK_LIST_START_MARKER"\n"); - fprintf(ofh, " fs/px ss/px (1/d)/nm^-1 Intensity Panel\n"); + fprintf(ofh, " fs/px ss/px (1/d)/nm^-1 Intensity Panel\n"); for ( i=0; i<image_feature_count(image->features); i++ ) { @@ -208,7 +208,7 @@ static void write_peaks_2_3(struct image *image, FILE *ofh) write_fs = f->fs-p->min_fs+p->orig_min_fs; write_ss = f->ss-p->min_ss+p->orig_min_ss; - fprintf(ofh, "%7.2f %7.2f %10.2f %10.2f %s\n", + fprintf(ofh, "%7.2f %7.2f %10.2f %10.2f %s\n", write_fs, write_ss, q/1.0e9, f->intensity, p->name); } |