aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
authorValerio Mariani <valerio.mariani@desy.de>2014-05-06 17:51:47 +0200
committerThomas White <taw@physics.org>2014-05-21 16:04:23 +0200
commit8c212e3abb7f4343affeb5e9e1092b59d3b74075 (patch)
treefd6629a34ebe77b2fc0ac9afc77eb5ffff77c9af /src/compare_hkl.c
parent2658f7ca3fbdd0f037b9286812e6967b42517c0d (diff)
Added reporting of version number to all program and stream file
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/compare_hkl.c b/src/compare_hkl.c
index d2173aff..e10b93aa 100644
--- a/src/compare_hkl.c
+++ b/src/compare_hkl.c
@@ -42,13 +42,13 @@
#include <gsl/gsl_errno.h>
#include <gsl/gsl_statistics.h>
+#include "version.h"
#include "utils.h"
#include "statistics.h"
#include "symmetry.h"
#include "reflist-utils.h"
#include "cell-utils.h"
-
enum fom
{
FOM_R1I,
@@ -109,6 +109,7 @@ static void show_help(const char *s)
" --intensity-shells Use shells of intensity instead of resolution.\n"
"\n"
" -h, --help Display this help message.\n"
+" --version Print CrystFEL version number and exit.\n"
);
}
@@ -935,6 +936,7 @@ int main(int argc, char *argv[])
/* Long options */
const struct option longopts[] = {
{"help", 0, NULL, 'h'},
+ {"version", 0, NULL, 10 },
{"symmetry", 1, NULL, 'y'},
{"pdb", 1, NULL, 'p'},
{"rmin", 1, NULL, 2},
@@ -962,6 +964,11 @@ int main(int argc, char *argv[])
show_help(argv[0]);
return 0;
+ case 10 :
+ printf("CrystFEL: " CRYSTFEL_VERSIONSTRING "\n");
+ printf(CRYSTFEL_BOILERPLATE"\n");
+ return 0;
+
case 'y' :
sym_str = strdup(optarg);
break;