Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
3b277295
Commit
3b277295
authored
Oct 07, 2020
by
Thomas White
Browse files
asdf: Fix incorrect units conversion for cell volume
parent
886ae521
Changes
1
Hide whitespace changes
Inline
Side-by-side
libcrystfel/src/asdf.c
View file @
3b277295
...
...
@@ -1083,7 +1083,7 @@ int run_asdf(struct image *image, void *ipriv)
d_max
=
max
(
a
,
b
,
c
)
*
3
*
1e10
;
double
volume
=
cell_get_volume
(
dp
->
template
)
/
1e30
;
double
volume
=
cell_get_volume
(
dp
->
template
)
*
1e30
;
/* Divide volume constraints by number of lattice points per
* unit cell since asdf always finds primitive cell */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment