diff options
author | Thomas White <taw@physics.org> | 2010-06-28 12:13:17 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:51 +0100 |
commit | 05a5aa64bac39b045c841fc199e73451312f2a09 (patch) | |
tree | 03a4318ea79b2cd05861b309699b66e933c7eea3 | |
parent | e3f93b71683c4e65d5e351c54174df0fabc11905 (diff) |
render_hkl: New "boost" factor
-rw-r--r-- | src/render_hkl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render_hkl.c b/src/render_hkl.c index 1fd3ec24..06ac745d 100644 --- a/src/render_hkl.c +++ b/src/render_hkl.c @@ -145,7 +145,7 @@ static void render_za(UnitCell *cell, double *ref, unsigned int *c) if ( ct < 1 ) continue; intensity = lookup_intensity(ref, h, k, 0) / (float)ct; - val = 10.0*intensity/max_intensity; + val = 3.0*intensity/max_intensity; u = (double)h*as*sin(theta); v = (double)h*as*cos(theta) + k*bs; |