aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/statistics.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel/src/statistics.h')
-rw-r--r--libcrystfel/src/statistics.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/libcrystfel/src/statistics.h b/libcrystfel/src/statistics.h
deleted file mode 100644
index 4e2d2aff..00000000
--- a/libcrystfel/src/statistics.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * statistics.h
- *
- * Structure-factor statistics
- *
- * Copyright © 2012 Deutsches Elektronen-Synchrotron DESY,
- * a research centre of the Helmholtz Association.
- *
- * Authors:
- * 2009-2012 Thomas White <taw@physics.org>
- *
- * This file is part of CrystFEL.
- *
- * CrystFEL is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * CrystFEL is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with CrystFEL. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#ifndef STATISTICS_H
-#define STATISTICS_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "reflist.h"
-
-/**
- * \file statistics.h
- * Intensity statistic calculations
- */
-
-extern double stat_scale_intensity(RefList *list1, RefList *list2);
-
-extern double stat_r1_zero(RefList *list1, RefList *list2,
- double *scalep, int u);
-extern double stat_r1_ignore(RefList *list1, RefList *list2,
- double *scalep, int u);
-
-extern double stat_r2(RefList *list1, RefList *list2, double *scalep, int u);
-
-extern double stat_r1_i(RefList *list1, RefList *list2, double *scalep, int u);
-
-extern double stat_rdiff_zero(RefList *list1, RefList *list2,
- double *scalep, int u);
-extern double stat_rdiff_ignore(RefList *list1, RefList *list2,
- double *scalep, int u);
-extern double stat_rdiff_intensity(RefList *list1, RefList *list2,
- double *scalep, int u);
-
-extern double stat_pearson_i(RefList *list1, RefList *list2);
-extern double stat_pearson_f_zero(RefList *list1, RefList *list2);
-extern double stat_pearson_f_ignore(RefList *list1, RefList *list2);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* STATISTICS_H */