diff options
author | Thomas White <taw@physics.org> | 2010-08-26 16:58:21 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:26:56 +0100 |
commit | d45677c6b6c671676c5487cb25fb01d7f7d02702 (patch) | |
tree | ef3e25aeab98eef210cce545362cfb4dc95c082e /src/compare_hkl.c | |
parent | b22e7b46c84bcb1f6d469baa274583f4c526e2f4 (diff) |
compare_hkl: Get rid of Riso
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r-- | src/compare_hkl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c index 5f8b79ce..5a490771 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -53,7 +53,7 @@ int main(int argc, char *argv[]) char *afile = NULL; char *bfile = NULL; char *sym = NULL; - double scale, R1, R2, Rdiff, Riso, pearson; + double scale, R1, R2, Rdiff, pearson; int i, ncom; ReflItemList *i1, *i2, *icommon; @@ -149,8 +149,6 @@ int main(int argc, char *argv[]) STATUS("R2 = %5.4f %% (scale=%5.2e)\n", R2*100.0, scale); Rdiff = stat_rdiff(ref1, ref2_transformed, icommon, &scale); STATUS("Rdiff = %5.4f %% (scale=%5.2e)\n", Rdiff*100.0, scale); - Riso = stat_riso(ref1, ref2_transformed, icommon, &scale); - STATUS("Riso = %5.4f %% (scale=%5.2e)\n", Riso*100.0, scale); pearson = stat_pearson(ref1, ref2_transformed, icommon); STATUS("Pearson r = %5.4f\n", pearson); |