From 9c67613d0435aa5352e1ab458d52b6bf1d92bede Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 16 Jul 2010 19:27:33 +0200 Subject: compare_hkl: Add symmetry option (not implemented yet) --- src/compare_hkl.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/compare_hkl.c') diff --git a/src/compare_hkl.c b/src/compare_hkl.c index e69f3753..2aafcdb1 100644 --- a/src/compare_hkl.c +++ b/src/compare_hkl.c @@ -35,6 +35,7 @@ static void show_help(const char *s) "\n" " -h, --help Display this help message.\n" " -o, --output= Specify output filename for correction factor.\n" +" -y, --symmetry= The symmetry of both the input files.\n" "\n"); } @@ -57,6 +58,7 @@ int main(int argc, char *argv[]) const struct option longopts[] = { {"help", 0, NULL, 'h'}, {"output", 1, NULL, 'o'}, + {"symmetry", 1, NULL, 'y'}, {0, 0, NULL, 0} }; @@ -72,6 +74,10 @@ int main(int argc, char *argv[]) outfile = strdup(optarg); break; + case 'y' : + sym = strdup(optarg); + break; + case 0 : break; -- cgit v1.2.3