aboutsummaryrefslogtreecommitdiff
path: root/src/rejection.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-03-01 13:49:30 +0100
committerThomas White <taw@physics.org>2015-03-12 16:37:25 +0100
commitd7b326f4e75cf6bda8c1a097a92923820aa4b6e3 (patch)
tree5432a940f284a05278a7fb162b62f49ff8e6e162 /src/rejection.h
parentd629386cb7b89cacea1673523f7d39f2fd23ec61 (diff)
partialator: Add B-factor scaling and rejection
Diffstat (limited to 'src/rejection.h')
-rw-r--r--src/rejection.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/rejection.h b/src/rejection.h
new file mode 100644
index 00000000..891d6216
--- /dev/null
+++ b/src/rejection.h
@@ -0,0 +1,42 @@
+/*
+ * rejection.h
+ *
+ * Crystal rejection for scaling
+ *
+ * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY,
+ * a research centre of the Helmholtz Association.
+ *
+ * Authors:
+ * 2010-2015 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/>.
+ *
+ */
+
+#ifndef REJECTION_H
+#define REJECTION_H
+
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
+#include "crystal.h"
+
+extern void early_rejection(Crystal **crystals, int n);
+
+#endif /* REJECTION_H */