aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2013-02-22 11:57:26 +0100
committerThomas White <taw@physics.org>2013-02-22 11:57:26 +0100
commit8a1898f66575495b9dbb75a7ce1bc6ea26c05cb3 (patch)
tree1f3113a22df42f55f362bd70e446d2d9d743e85b /libcrystfel
parent9dd569008c6190b697d64c77a96e50a59e65fbf0 (diff)
Move processing pipeline to separate file
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/index.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/libcrystfel/src/index.h b/libcrystfel/src/index.h
index f60bb18f..f8f6e55b 100644
--- a/libcrystfel/src/index.h
+++ b/libcrystfel/src/index.h
@@ -38,12 +38,6 @@
#endif
-#include "beam-parameters.h"
-#include "cell.h"
-#include "image.h"
-#include "detector.h"
-
-
#define INDEXING_DEFAULTS_DIRAX (INDEXING_DIRAX | INDEXING_CHECK_PEAKS \
| INDEXING_CHECK_CELL_COMBINATIONS)
@@ -110,6 +104,11 @@ typedef void *IndexingPrivate;
extern IndexingMethod *build_indexer_list(const char *str);
extern char *indexer_str(IndexingMethod indm);
+#include "beam-parameters.h"
+#include "detector.h"
+#include "cell.h"
+#include "image.h"
+
extern IndexingPrivate **prepare_indexing(IndexingMethod *indm, UnitCell *cell,
const char *filename,
struct detector *det,