aboutsummaryrefslogtreecommitdiff
path: root/src/compare_hkl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compare_hkl.c')
-rw-r--r--src/compare_hkl.c6
1 files changed, 6 insertions, 0 deletions
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=<filename> Specify output filename for correction factor.\n"
+" -y, --symmetry=<sym> 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;