aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw27@cam.ac.uk>2008-11-04 10:31:28 +0000
committerThomas White <taw27@cam.ac.uk>2008-11-04 10:31:28 +0000
commit7d28935e4d506cdb988737f040d01ac8ffef5a72 (patch)
tree1cd053967a7a7cae2521300231bc2c56e69b2fcd
parent2f82512745ecbd75bf4fd04cb5f7ff06642943aa (diff)
Line wrapping and comment fussiness
-rw-r--r--src/mrc.c5
-rw-r--r--src/qdrp.c3
2 files changed, 5 insertions, 3 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);
diff --git a/src/qdrp.c b/src/qdrp.c
index aae0c2e..9c278b4 100644
--- a/src/qdrp.c
+++ b/src/qdrp.c
@@ -3,7 +3,8 @@
*
* Handle QDRP-style control files
*
- * (c) 2007 Thomas White <taw27@cam.ac.uk>
+ * (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
+ *
* dtr - Diffraction Tomography Reconstruction
*
*/