aboutsummaryrefslogtreecommitdiff
path: root/src/predict-refine.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2015-03-13 17:16:27 +0100
committerThomas White <taw@physics.org>2015-04-20 15:50:38 +0200
commit4a7a658c2a4a05ba8be6bc0de698c5582817d3e3 (patch)
treeb71a5f591d4aa3440d484558123808d40e76bcf3 /src/predict-refine.h
parentd8bbf2274172d81ee59d6f95c7205964d3b6439f (diff)
Add prediction refinement
Diffstat (limited to 'src/predict-refine.h')
-rw-r--r--src/predict-refine.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/predict-refine.h b/src/predict-refine.h
new file mode 100644
index 00000000..9742f9e2
--- /dev/null
+++ b/src/predict-refine.h
@@ -0,0 +1,44 @@
+/*
+ * predict-refine.h
+ *
+ * Prediction refinement
+ *
+ * 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 PREDICT_REFINE_H
+#define PREDICT_REFINE_H
+
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "crystal.h"
+
+struct image;
+
+extern int refine_prediction(struct image *image, Crystal *cr);
+
+
+#endif /* PREDICT_REFINE_H */