Skip to content

Commit

Permalink
fix change removed after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
GarethCabournDavies committed Dec 11, 2023
1 parent 00781ea commit 3fe0d00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/minifollowups/pycbc_foreground_minifollowup
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,10 @@ tids = {}
ifo_list = f.attrs['ifos'].split(' ')
f_cat = f[file_val]
for ifo in ifo_list:
times[ifo] = f[f'{file_val}/{ifo}/time'][:][event_idx]
tids[ifo] = f[f'{file_val}/{ifo}/trigger_id'][:][event_idx]
times[ifo] = f_cat[f'/{ifo}/time'][:][event_idx]
tids[ifo] = f_cat[f'{ifo}/trigger_id'][:][event_idx]
bank_ids = f_cat['template_id'][:][event_idx]
f.close()

bank_data = h5py.File(args.bank_file, 'r')

Expand Down

0 comments on commit 3fe0d00

Please sign in to comment.