aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2012-08-07 18:20:38 +0200
committerThomas White <taw@physics.org>2012-10-02 15:02:12 +0200
commitae3a6a04282ffaeaa010edbff1850a522d255054 (patch)
treebdcb330f18badcd56570fcd2b959302c19763c6c /src
parent38f4df68678bb4c6eb8cbb3b721db2e130643299 (diff)
Move unit cell utility stuff to separate module
Diffstat (limited to 'src')
-rw-r--r--src/check_hkl.c1
-rw-r--r--src/compare_hkl.c1
-rw-r--r--src/indexamajig.c1
-rw-r--r--src/partial_sim.c17
-rw-r--r--src/pattern_sim.c1
-rw-r--r--src/post-refinement.c1
-rw-r--r--src/powder_plot.c1
-rw-r--r--src/render_hkl.c1
8 files changed, 16 insertions, 8 deletions
diff --git a/src/check_hkl.c b/src/check_hkl.c
index 1dfe91a0..84cfdccf 100644
--- a/src/check_hkl.c
+++ b/src/check_hkl.c
@@ -43,6 +43,7 @@
#include "symmetry.h"
#include "reflist.h"
#include "reflist-utils.h"
+#include "cell-utils.h"
/* Number of bins for plot of resolution shells */
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index b6a525fc..2b0e5f90 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -44,6 +44,7 @@
#include "statistics.h"
#include "symmetry.h"
#include "reflist-utils.h"
+#include "cell-utils.h"
/* Number of bins for plot of resolution shells */
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 074be20a..4b3dcb5d 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -62,6 +62,7 @@
#include "geometry.h"
#include "stream.h"
#include "reflist-utils.h"
+#include "cell-utils.h"
#include "im-sandbox.h"
diff --git a/src/partial_sim.c b/src/partial_sim.c
index 62c72ceb..e9a7003e 100644
--- a/src/partial_sim.c
+++ b/src/partial_sim.c
@@ -40,14 +40,15 @@
#include <assert.h>
#include <pthread.h>
-#include <utils.h>
-#include <reflist-utils.h>
-#include <symmetry.h>
-#include <beam-parameters.h>
-#include <detector.h>
-#include <geometry.h>
-#include <stream.h>
-#include <thread-pool.h>
+#include "image.h"
+#include "utils.h"
+#include "reflist-utils.h"
+#include "symmetry.h"
+#include "beam-parameters.h"
+#include "geometry.h"
+#include "stream.h"
+#include "thread-pool.h"
+#include "cell-utils.h"
/* Number of bins for partiality graph */
#define NBINS 50
diff --git a/src/pattern_sim.c b/src/pattern_sim.c
index f9831e79..06a1f5e5 100644
--- a/src/pattern_sim.c
+++ b/src/pattern_sim.c
@@ -42,6 +42,7 @@
#include "diffraction.h"
#include "diffraction-gpu.h"
#include "cell.h"
+#include "cell-utils.h"
#include "utils.h"
#include "hdf5-file.h"
#include "detector.h"
diff --git a/src/post-refinement.c b/src/post-refinement.c
index 78c47d07..ac4de1bc 100644
--- a/src/post-refinement.c
+++ b/src/post-refinement.c
@@ -45,6 +45,7 @@
#include "symmetry.h"
#include "geometry.h"
#include "cell.h"
+#include "cell-utils.h"
/* Maximum number of iterations of NLSq to do for each image per macrocycle. */
diff --git a/src/powder_plot.c b/src/powder_plot.c
index dd7f3f29..7917ccd0 100644
--- a/src/powder_plot.c
+++ b/src/powder_plot.c
@@ -51,6 +51,7 @@
#include "beam-parameters.h"
#include "reflist-utils.h"
#include "symmetry.h"
+#include "cell-utils.h"
struct bin_stats {
diff --git a/src/render_hkl.c b/src/render_hkl.c
index 9e7a6dda..3ae3b345 100644
--- a/src/render_hkl.c
+++ b/src/render_hkl.c
@@ -48,6 +48,7 @@
#include "render_hkl.h"
#include "reflist.h"
#include "reflist-utils.h"
+#include "cell-utils.h"
#define KEY_FILENAME "key.pdf"