Skip to content

Commit

Permalink
Change f-low to f-lower (gwastro#4478)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtrevor authored Sep 6, 2023
1 parent 7d1d7a9 commit 0c9a8c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/all_sky_search/pycbc_bin_trigger_rates_dq
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parser.add_argument("--trig-file", required=True)
parser.add_argument("--stat-threshold", type=float,
help="Only consider triggers with statistic value "
"above this threshold")
parser.add_argument("--f-low", type=float, default=15.,
parser.add_argument("--f-lower", type=float, default=15.,
help='Enforce a uniform low frequency cutoff to '
'calculate template duration over the bank')
parser.add_argument("--dq-file", required=True, nargs='+')
Expand Down Expand Up @@ -53,7 +53,7 @@ with h5.File(args.bank_file, 'r') as bank:
'mass2': bank['mass2'][:],
'spin1z': bank['spin1z'][:],
'spin2z': bank['spin2z'][:],
'f_lower': np.ones_like(bank['mass1'][:]) * args.f_low
'f_lower': np.ones_like(bank['mass1'][:]) * args.f_lower
}
locs_dict = pycbc.events.background_bin_from_string(
args.background_bins, data)
Expand Down

0 comments on commit 0c9a8c3

Please sign in to comment.