diff options
author | Thomas White <taw@physics.org> | 2013-05-15 16:14:01 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-05-15 16:14:01 +0200 |
commit | c00c5f39ebbed88631bebf340011c660193ec2e2 (patch) | |
tree | c3022439acd3bfc981f2463ecae57fcefc8013fa /src | |
parent | 54f704a4458eab9c9266fcdcb0d7d4db5ec69048 (diff) |
Disable weighting (for now) and update ChangeLog
Diffstat (limited to 'src')
-rw-r--r-- | src/process_hkl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index c2589115..fda02137 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -220,7 +220,7 @@ static int merge_crystal(RefList *model, struct image *image, Crystal *cr, refl_intensity = scale * get_intensity(refl); refl_sigma = scale * get_esd_intensity(refl); - w = pow(refl_sigma, -2.0); + w = 1.0;//pow(refl_sigma, -2.0); mean = get_intensity(model_version); sumweight = get_temp1(model_version); |