diff options
author | Thomas White <taw@physics.org> | 2016-08-16 10:27:58 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2016-08-16 10:28:45 +0200 |
commit | 42e2c1751ca82088f47ca62e796320d334c7a77c (patch) | |
tree | f8567f2e1cc49f09fdf96b3b69834b8f9df5d46c /src | |
parent | a7f52bf15d5d44b45f8dba7ab28038c5f9dee372 (diff) |
get_hkl, partialator, process_hkl: Add command line and version info
Diffstat (limited to 'src')
-rw-r--r-- | src/get_hkl.c | 5 | ||||
-rw-r--r-- | src/partialator.c | 1 | ||||
-rw-r--r-- | src/process_hkl.c | 5 |
3 files changed, 7 insertions, 4 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index b1d83c79..7574641e 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -3,11 +3,11 @@ * * Small program to manipulate reflection lists * - * Copyright © 2013-2015 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2013-2016 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2009-2015 Thomas White <taw@physics.org> + * 2009-2016 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -829,6 +829,7 @@ int main(int argc, char *argv[]) } + reflist_add_command_and_version(input, argc, argv); /* Yes, really! */ write_reflist(output, input); reflist_free(input); diff --git a/src/partialator.c b/src/partialator.c index 28b340c8..b246571d 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -1114,6 +1114,7 @@ int main(int argc, char *argv[]) /* Output results */ STATUS("Writing overall results to %s\n", outfile); + reflist_add_command_and_version(full, argc, argv); write_reflist_2(outfile, full, sym); /* Output split results */ diff --git a/src/process_hkl.c b/src/process_hkl.c index fb17e22f..29ef29a1 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -3,13 +3,13 @@ * * Assemble and process FEL Bragg intensities * - * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2016 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * Copyright © 2012 Lorenzo Galli * * Authors: * 2015 Keitaro Yamashita <k.yamashita@spring8.or.jp> - * 2009-2015 Thomas White <taw@physics.org> + * 2009-2016 Thomas White <taw@physics.org> * 2011 Andrew Martin <andrew.martin@desy.de> * 2012 Lorenzo Galli <lorenzo.galli@desy.de> * 2014 Chunhong Yoon <chun.hong.yoon@desy.de> @@ -821,6 +821,7 @@ int main(int argc, char *argv[]) hist_nbins); } + reflist_add_command_and_version(model, argc, argv); write_reflist_2(output, model, sym); close_stream(st); |