aboutsummaryrefslogtreecommitdiff
path: root/src/statistics.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-07-02 18:51:27 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:52 +0100
commit25f94f2adde8292e0d58d880cd87a905b89c5527 (patch)
tree685dc25c1ff66b375610b3bb119b2929ce365eb1 /src/statistics.c
parent81ce39f9d6e6df5ec2bfd54ca1c1a57edd1f22dc (diff)
compare_hkl: Show Rmerge as well
Diffstat (limited to 'src/statistics.c')
-rw-r--r--src/statistics.c63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/statistics.c b/src/statistics.c
index b1589ebe..d78dde9e 100644
--- a/src/statistics.c
+++ b/src/statistics.c
@@ -73,3 +73,66 @@ double stat_r2(const double *ref1, const unsigned int *c1,
return sqrt(top/bot);
}
+
+
+double stat_scale_sqrti(const double *ref1, const unsigned int *c1,
+ const double *ref2, const unsigned int *c2)
+{
+ double top = 0.0;
+ double bot = 0.0;
+ int i;
+
+ /* Start from i=1 -> skip central beam */
+ for ( i=1; i<LIST_SIZE; i++ ) {
+
+ if ( c1[i] && c2[i] ) {
+
+ double f1, f2;
+
+ if ( (ref1[i]<0.0) || (ref2[i]<0.0) ) continue;
+
+ f1 = sqrt(ref1[i]) / (double)c1[i];
+ f2 = sqrt(ref2[i]) / (double)c2[i];
+
+ top += f1 * f2;
+ bot += f2 * f2;
+
+ } /* else reflection not common so don't worry about it */
+
+ }
+
+ return top/bot;
+}
+
+
+double stat_rmerge(const double *ref1, const unsigned int *c1,
+ const double *ref2, const unsigned int *c2, double *scalep)
+{
+ double top = 0.0;
+ double bot = 0.0;
+ double scale;
+ int i;
+ scale = stat_scale_sqrti(ref1, c1, ref2, c2);
+ *scalep = scale;
+
+ /* Start from i=1 -> skip central beam */
+ for ( i=1; i<LIST_SIZE; i++ ) {
+
+ if ( c1[i] && c2[i] ) {
+
+ double f1, f2;
+
+ if ( (ref1[i]<0.0) || (ref2[i]<0.0) ) continue;
+
+ f1 = sqrt(ref1[i]) / (scale*(double)c1[i]);
+ f2 = sqrt(ref2[i]) / (double)c2[i];
+
+ top += fabs(f1 - f2);
+ bot += f1 + f2;
+
+ } /* else reflection not measured so don't worry about it */
+
+ }
+
+ return 2.0*top/bot;
+}