Skip to content

Commit

Permalink
SNR optimizer option types
Browse files Browse the repository at this point in the history
Fix issue in non-default settings for some options that Max complained about
  • Loading branch information
tdent authored Feb 23, 2024
1 parent 232a4ce commit aa74dfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/pycbc_optimize_snr
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ parser.add_argument('--psd-files', type=str, nargs='+',
'by PyCBC Live.')
parser.add_argument('--approximant', required=True,
help='Waveform approximant string.')
parser.add_argument('--snr-threshold', default=4.0,
parser.add_argument('--snr-threshold', type=float, default=4.0,
help='If the SNR in ifo X is below this threshold do not '
'consider it part of the coincidence. Not implemented')
parser.add_argument('--chirp-time-f-lower', default=20.,
parser.add_argument('--chirp-time-f-lower', type=float, default=20.,
help='Starting frequency for chirp time window (Hz).')
parser.add_argument('--chirp-time-window', default=2.,
parser.add_argument('--chirp-time-window', type=float, default=2.,
help='Chirp time window (s).')
parser.add_argument('--gracedb-server', metavar='URL',
help='URL of GraceDB server API for uploading events. '
Expand Down

0 comments on commit aa74dfa

Please sign in to comment.