diff options
author | Thomas White <taw@physics.org> | 2021-04-08 17:16:34 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2021-04-08 17:16:34 +0200 |
commit | ec0cf0e18a2ecc45800d40d873e73259550ffb96 (patch) | |
tree | 3263f69c75bcda315f5686b8322bd621acfffc10 /src/get_hkl.c | |
parent | 666d2995e6e560f219b83860f511f69f2daf1299 (diff) |
get_hkl: Write symmetry into output file
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 71de316d..4dd9e3fd 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -7,7 +7,7 @@ * a research centre of the Helmholtz Association. * * Authors: - * 2009-2020 Thomas White <taw@physics.org> + * 2009-2021 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -739,6 +739,7 @@ int main(int argc, char *argv[]) /* Replace old with new */ reflist_free(input); input = new; + mero = expand; } @@ -900,7 +901,7 @@ int main(int argc, char *argv[]) reflist_add_command_and_version(input, argc, argv); /* Yes, really! */ if ( output_format_str == NULL ) { - write_reflist(output, input); + write_reflist_2(output, input, mero); } else if ( cell == NULL ) { ERROR("You must provide a unit cell to use MTZ or XDS output.\n"); } else if ( strcasecmp(output_format_str, "mtz") == 0 ) { |