aboutsummaryrefslogtreecommitdiff
path: root/src/basis.h
diff options
context:
space:
mode:
authorThomas White <taw27@cam.ac.uk>2009-03-30 12:15:29 +0100
committerThomas White <taw27@cam.ac.uk>2009-03-30 12:15:29 +0100
commitd3ea8291ad68bf22123b8c16e6eb19a428b05329 (patch)
tree7e17d8a51b15d73408bfcdcb5abf72d4ca3a4d9f /src/basis.h
parent3ffa0ce286bac2c3c4d9e7d41bd2ca8972d6288a (diff)
parent69d1342278729353799d0fee646e0f44517ebed8 (diff)
Merge branch 'master' of ssh://git-weiss@jade.msm.cam.ac.uk/srv/git/dtr
Conflicts: src/dirax.c
Diffstat (limited to 'src/basis.h')
-rw-r--r--src/basis.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/basis.h b/src/basis.h
index 25eb0ae..2253506 100644
--- a/src/basis.h
+++ b/src/basis.h
@@ -3,12 +3,12 @@
*
* Handle basis structures
*
- * (c) 2007 Thomas White <taw27@cam.ac.uk>
+ * (c) 2007-2009 Thomas White <taw27@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
*/
-
+
#ifndef BASIS_H
#define BASIS_H
@@ -19,11 +19,11 @@
#include "control.h"
typedef struct {
-
+
double x;
double y;
double z;
-
+
} Vector;
typedef struct basis_struct {
@@ -41,9 +41,8 @@ typedef struct cell_struct {
double gamma;
} UnitCell;
-extern double basis_efom(struct reflectionlist_struct *reflectionlist, Basis *basis);
-extern Basis basis_add(Basis u, Basis v);
extern UnitCell basis_get_cell(Basis *cell);
+extern void basis_save(ControlContext *ctx);
+extern void basis_load(ControlContext *ctx);
#endif /* BASIS_H */
-