aboutsummaryrefslogtreecommitdiff
path: root/src/reproject.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/reproject.c')
-rw-r--r--src/reproject.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/reproject.c b/src/reproject.c
index e0199af..41040b9 100644
--- a/src/reproject.c
+++ b/src/reproject.c
@@ -59,8 +59,6 @@ ImageFeatureList *reproject_get_reflections(ImageRecord *image,
double kx, ky, kz; /* Electron wavevector ("normal" times 1/lambda */
double ux, uy, uz; /* "up" vector */
double rx, ry, rz; /* "right" vector */
- int nrr = 0;
- int n = 0;
flist = image_feature_list_new();
@@ -168,11 +166,6 @@ ImageFeatureList *reproject_get_reflections(ImageRecord *image,
image_add_feature_reflection(flist, x,
y, image, reflection->intensity,
reflection);
- printf("adding %i %i %i\n",
- reflection->h,
- reflection->k,
- reflection->l);
- n++;
} /* else it's outside the picture somewhere */
@@ -182,8 +175,6 @@ ImageFeatureList *reproject_get_reflections(ImageRecord *image,
reflection = reflection->next;
- nrr++;
-
} while ( reflection );
/* Partner features only if the image has a feature list. This allows
@@ -193,8 +184,6 @@ ImageFeatureList *reproject_get_reflections(ImageRecord *image,
reproject_partner_features(flist, image);
}
- printf("processed %i, found %i\n", nrr, n);
-
return flist;
}
@@ -242,7 +231,6 @@ void reproject_lattice_changed(ControlContext *ctx) {
int partnered_measured = 0;
reproject_cell_to_lattice(ctx);
- printf("%i reflections\n", ctx->cell_lattice->n_reflections);
for ( i=0; i<ctx->images->n_images; i++ ) {