From e990445264d1417c228af33be238a245b08396cb Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Wed, 4 Sep 2019 15:43:56 -0400 Subject: added ability to change the autocorrelation function length on teh command line, --- src/new_model.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/new_model.cpp b/src/new_model.cpp index 9d51ff5..a922a8f 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -252,7 +252,7 @@ int main (int argc, char *argv[]) { int opt; // take command line arguments - while ((opt = getopt(argc, argv, "N:L:T:J:K:a:n:e:f:w:")) != -1) { + while ((opt = getopt(argc, argv, "N:L:T:J:K:a:n:e:f:w:h:")) != -1) { switch (opt) { case 'N': // number of steps N = (unsigned)atof(optarg); @@ -284,6 +284,9 @@ int main (int argc, char *argv[]) { case 'w': w = atoi(optarg); break; + case 'h': + nh = atoi(optarg); + break; default: exit(EXIT_FAILURE); } -- cgit v1.2.3-54-g00ecf