diff options
author | Thomas White <taw@physics.org> | 2019-06-17 11:17:33 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-06-19 10:56:40 +0200 |
commit | 6ff483dc7730979f7a888b2dec6ac702dcbecf55 (patch) | |
tree | 9fe4fe4a001a9726c1362f2378fe61d9f21ce252 /libcrystfel/src/cell.h | |
parent | c5ab9ad56d759ee6c22ed46dc4831196cbf98b12 (diff) |
Const-cleanliness
Diffstat (limited to 'libcrystfel/src/cell.h')
-rw-r--r-- | libcrystfel/src/cell.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcrystfel/src/cell.h b/libcrystfel/src/cell.h index 15e13707..4bbc1be2 100644 --- a/libcrystfel/src/cell.h +++ b/libcrystfel/src/cell.h @@ -111,15 +111,15 @@ extern void cell_set_cartesian(UnitCell *cell, extern void cell_set_parameters(UnitCell *cell, double a, double b, double c, double alpha, double beta, double gamma); -extern int cell_get_parameters(UnitCell *cell, double *a, double *b, double *c, +extern int cell_get_parameters(const UnitCell *cell, double *a, double *b, double *c, double *alpha, double *beta, double *gamma); -extern int cell_get_cartesian(UnitCell *cell, +extern int cell_get_cartesian(const UnitCell *cell, double *ax, double *ay, double *az, double *bx, double *by, double *bz, double *cx, double *cy, double *cz); -extern int cell_get_reciprocal(UnitCell *cell, +extern int cell_get_reciprocal(const UnitCell *cell, double *asx, double *asy, double *asz, double *bsx, double *bsy, double *bsz, double *csx, double *csy, double *csz); |