aboutsummaryrefslogtreecommitdiff
path: root/src/mrc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mrc.c')
-rw-r--r--src/mrc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mrc.c b/src/mrc.c
index 57df51c..d1155e1 100644
--- a/src/mrc.c
+++ b/src/mrc.c
@@ -3,7 +3,7 @@
*
* Read the MRC tomography format
*
- * (c) 2007 Thomas White <taw27@cam.ac.uk>
+ * (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
@@ -72,7 +72,8 @@ int mrc_read(ControlContext *ctx) {
int16_t *image = malloc(mrc.ny * mrc.nx * sizeof(uint16_t));
uint16_t *uimage = malloc(mrc.ny * mrc.nx * sizeof(uint16_t));
- printf("Image #%3i: tilt=%f deg omega=%f deg L=%f m\n", i, ext[i].a_tilt, ext[i].tilt_axis, ext[i].magnification);
+ printf("Image #%3i: tilt=%f deg omega=%f deg L=%f m\n", i, ext[i].a_tilt, ext[i].tilt_axis,
+ ext[i].magnification);
ctx->camera_length = ext[i].magnification;
if ( ext[i].voltage == 0 ) {
ctx->lambda = lambda(200000);