aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/cell-utils.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2016-10-19 12:02:45 +0200
committerThomas White <taw@physics.org>2016-10-19 12:02:45 +0200
commit22a20b5b3374a4c776c6efcbed738434cc1c9a6b (patch)
treeff790e9dada2ffab9359d553797629305695c23b /libcrystfel/src/cell-utils.h
parent508df3a968c08bf262b059a6e0d6e8edefc7401e (diff)
Add transform_cell_gsl()
Diffstat (limited to 'libcrystfel/src/cell-utils.h')
-rw-r--r--libcrystfel/src/cell-utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libcrystfel/src/cell-utils.h b/libcrystfel/src/cell-utils.h
index 000c863a..efb4b25b 100644
--- a/libcrystfel/src/cell-utils.h
+++ b/libcrystfel/src/cell-utils.h
@@ -35,6 +35,8 @@
#include <config.h>
#endif
+#include <gsl/gsl_matrix.h>
+
#include "cell.h"
#ifdef __cplusplus
@@ -47,6 +49,7 @@ extern double resolution(UnitCell *cell,
extern UnitCell *cell_rotate(UnitCell *in, struct quaternion quat);
extern UnitCell *rotate_cell(UnitCell *in, double omega, double phi,
double rot);
+extern UnitCell *transform_cell_gsl(UnitCell *in, gsl_matrix *m);
extern void cell_print(UnitCell *cell);