From 4409530258d427a9875539c66609bcc3c4ec8aea Mon Sep 17 00:00:00 2001 From: Gareth S Cabourn Davies Date: Tue, 22 Aug 2023 16:09:03 +0100 Subject: [PATCH] default bug in cluster-window in pycbc_inspiral (#4461) * default bug for cluster-window in pycbc_inspiral * Update bin/pycbc_inspiral --- bin/pycbc_inspiral | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pycbc_inspiral b/bin/pycbc_inspiral index 81d6b373256..dc71bd367d0 100644 --- a/bin/pycbc_inspiral +++ b/bin/pycbc_inspiral @@ -91,7 +91,7 @@ parser.add_argument("--cluster-function", choices=["findchirp", "symmetric"], "'findchirp' uses a forward sliding window; 'symmetric' " "will compare each window to the one before and after, keeping " "only a local maximum.", default="findchirp") -parser.add_argument("--cluster-window", type=float, default = -1, +parser.add_argument("--cluster-window", type=float, default=0, help="Length of clustering window in seconds." " Set to 0 to disable clustering.") parser.add_argument("--bank-veto-bank-file", type=str, help="FIXME: ADD")