diff options
author | Thomas White <taw@physics.org> | 2013-06-21 17:38:39 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-06-21 17:38:39 +0200 |
commit | 0252a3dd4241f8465e58062b710cbc7b77a5502d (patch) | |
tree | 9dfb7cdc96528f79cbcbe3f4cb82556752e8f4f8 | |
parent | 5e21b885fcceb8e09533de739dababcc33ad9154 (diff) |
Reduce verbosity
-rw-r--r-- | libcrystfel/src/integration.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libcrystfel/src/integration.c b/libcrystfel/src/integration.c index 2518089d..11e58c57 100644 --- a/libcrystfel/src/integration.c +++ b/libcrystfel/src/integration.c @@ -423,10 +423,6 @@ static void fit_bg(struct intcontext *ic, struct peak_box *bx) bx->c = gsl_vector_get(ans, 2); gsl_vector_free(ans); - - if ( bx->verbose ) { - show_peak_box(ic, bx); - } } @@ -1694,12 +1690,12 @@ static void integrate_rings(IntegrationMethod meth, Crystal *cr, bx->verbose = 1; } - if ( bx->verbose ) show_peak_box(&ic, bx); - fit_bg(&ic, bx); intensity = tentative_intensity(&ic, bx); sigma = 0.0; /* FIXME! */ + if ( bx->verbose ) show_peak_box(&ic, bx); + /* Record intensity and set redundancy to 1 */ bx->intensity = intensity; set_intensity(refl, intensity); |