aboutsummaryrefslogtreecommitdiff
path: root/src/peaks.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-12 15:27:09 +0100
committerThomas White <taw@physics.org>2010-01-12 15:27:09 +0100
commit37be1343c612c6abf22814c6eb4b67f7f39c61c8 (patch)
tree25ddd915d033ec12fcd45ecd81ad4601f1254767 /src/peaks.h
parentaec12416e6af499306fd7579ec897b7d03e0f251 (diff)
Move fine peak search to new file
Diffstat (limited to 'src/peaks.h')
-rw-r--r--src/peaks.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/peaks.h b/src/peaks.h
new file mode 100644
index 00000000..d7bbca4d
--- /dev/null
+++ b/src/peaks.h
@@ -0,0 +1,24 @@
+/*
+ * peaks.h
+ *
+ * Peak search and other image analysis
+ *
+ * (c) 2006-2009 Thomas White <taw@physics.org>
+ *
+ * Part of CrystFEL - crystallography with a FEL
+ *
+ */
+
+
+#ifndef PEAKS_H
+#define PEAKS_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
+extern void search_peaks(struct image *image, int dump_peaks);
+
+
+#endif /* PEAKS_H */