diff options
author | Thomas White <taw@physics.org> | 2012-03-05 18:18:59 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-03-05 18:18:59 +0100 |
commit | 4976035d8f4f839fcedc88d5d42bb40f425e38d4 (patch) | |
tree | cf376c9574c03ec759a3c8f7c444a4006f7cd4e8 /src/process_hkl.c | |
parent | 05144f78db92af885f10879f49c8f98f82e028f9 (diff) |
Formatting
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r-- | src/process_hkl.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index a2cdfa61..d90bc9ef 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -243,7 +243,8 @@ static void scale_intensities(RefList *model, RefList *new, const SymOpList *sym get_indices(refl, &h, &k, &l); switch ( scaling ) { - case SCALE_TWOPASS : + + case SCALE_TWOPASS : model_version = find_refl(model, h, k, l); if ( model_version == NULL ) continue; @@ -256,24 +257,19 @@ static void scale_intensities(RefList *model, RefList *new, const SymOpList *sym /* Calculate LSQ estimate of scaling factor */ top += i1 * i2; bot += i2 * i2; - break; - case SCALE_CONSTINT : - + case SCALE_CONSTINT : /* Sum up the intensity in the pattern */ i2 = get_intensity(refl); top += i2; - break; - case SCALE_INTPERBRAGG : - + case SCALE_INTPERBRAGG : /* Sum up the intensity in the pattern */ i2 = get_intensity(refl); top += i2; bot += 1.0; - break; } @@ -281,15 +277,19 @@ static void scale_intensities(RefList *model, RefList *new, const SymOpList *sym } switch ( scaling ) { - case SCALE_TWOPASS : + + case SCALE_TWOPASS : s = top / bot; break; - case SCALE_CONSTINT : + + case SCALE_CONSTINT : s = 1000.0 / top; break; - case SCALE_INTPERBRAGG : + + case SCALE_INTPERBRAGG : s = 1000.0 / (top/bot); break; + } /* Multiply the new pattern up by "s" */ |