diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-09-06 15:38:24 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:37 +0100 |
commit | eb20d480d41d64a5a86ec687b216b5cb204459c2 (patch) | |
tree | c9748e40180000819ba2c7f1cc55fdaec2f23ebd | |
parent | 0fbb2ed945b3758301be731062b530c63f36a380 (diff) |
Deliberately underestimate the sigmas given to MOSFLM
-rw-r--r-- | src/mosflm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mosflm.c b/src/mosflm.c index 4fada753..5df5af21 100644 --- a/src/mosflm.c +++ b/src/mosflm.c @@ -218,7 +218,7 @@ static void write_spt(struct image *image, const char *filename) sptlines[i].x = ry*pix*fclen/p->clen/1000.0; sptlines[i].y = -rx*pix*fclen/p->clen/1000.0; sptlines[i].h = height; - sptlines[i].s = sigma; + sptlines[i].s = sigma/1000.0; } |