aboutsummaryrefslogtreecommitdiff
path: root/src/reax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/reax.c')
-rw-r--r--src/reax.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/reax.c b/src/reax.c
index a6b53c30..ff1ea582 100644
--- a/src/reax.c
+++ b/src/reax.c
@@ -429,32 +429,32 @@ static void refine_rigid_group(struct image *image, UnitCell *cell,
fftw_execute_dft(pr->r_plan, r_fft_in, r_fft_out);
- max = 0.0;
- FILE *fh = fopen("centering.dat", "w");
- for ( i=0; i<pr->cw; i++ ) {
- for ( j=0; j<pr->ch; j++ ) {
-
- double re, im, am, ph;
-
- re = r_fft_out[i + pr->cw*j][0];
- im = r_fft_out[i + pr->cw*j][1];
- am = sqrt(re*re + im*im);
- ph = atan2(im, re);
-
- if ( am > max ) {
- max = am;
- max_i = i;
- max_j = j;
- }
-
- fprintf(fh, "%f ", am);
-
- }
- fprintf(fh, "\n");
- }
+// max = 0.0;
+// FILE *fh = fopen("centering.dat", "w");
+// for ( i=0; i<pr->cw; i++ ) {
+// for ( j=0; j<pr->ch; j++ ) {
+//
+// double re, im, am, ph;
+//
+// re = r_fft_out[i + pr->cw*j][0];
+// im = r_fft_out[i + pr->cw*j][1];
+// am = sqrt(re*re + im*im);
+// ph = atan2(im, re);
+//
+// if ( am > max ) {
+// max = am;
+// max_i = i;
+// max_j = j;
+// }
+//
+// fprintf(fh, "%f ", am);
+//
+// }
+// fprintf(fh, "\n");
+// }
// STATUS("Max at %i, %i\n", max_i, max_j);
- fclose(fh);
- exit(1);
+// fclose(fh);
+// exit(1);
// STATUS("Offsets for '%s': %.2f, %.2f pixels\n", rg, dx, dy);
}