aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-03-31 13:28:25 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-03-31 13:28:25 +0000
commit9f50a7efb9e16373c8f1d03abf6ad96235045139 (patch)
treef3b0c8c8fbe34a607216bfd2cf2a96853c5900b9 /src/utils.h
parentf71566444f92e4db9c93f222f77971484659ff08 (diff)
Fix namespace in itrans-stat,{c,h}
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@18 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h
index b4a0dca..1d5cb3c 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -4,16 +4,20 @@
* Utility stuff
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
+ * Gordon Ball <gfb21@cam.ac.uk>
+ *
* dtr - Diffraction Tomography Reconstruction
*
*/
+#ifndef UTILS_H
+#define UTILS_H
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
-#ifndef UTILS_H
-#define UTILS_H
+#include <gsl/gsl_matrix.h>
extern unsigned int biggest(signed int a, signed int b);
extern unsigned int smallest(signed int a, signed int b);
@@ -21,5 +25,6 @@ extern double distance(double x1, double y1, double x2, double y2);
extern double modulus(double x, double y, double z);
extern double angle_between(double x1, double y1, double z1, double x2, double y2, double z2);
extern double lambda(double voltage);
+extern void matrix_renormalise(gsl_matrix *m);
#endif /* UTILS_H */