Skip to content
Snippets Groups Projects
Commit f8093c93 authored by chad.hanna's avatar chad.hanna
Browse files

gstlal_inspiral_svd_bank_pipe: handle clipping edge cases the same as offline

parent 6784afcd
No related branches found
No related tags found
No related merge requests found
Pipeline #54509 passed with warnings
......@@ -158,6 +158,10 @@ for i, f in enumerate(groups):
# handle the edges by not clipping so you retain the template bank as intended.
clipleft = [options.overlap / 2] * len(f) # overlap must be even
clipright = [options.overlap / 2] * len(f) # overlap must be even
if i == 0:
clipleft[0] = 0
if i == len(groups) - 1:
clipright[-1] = 0
bank_ids = range(bank_ids[-1] + 1, bank_ids[-1] + 1 + len(f))
svd_bank_name = dagparts.T050017_filename(ifo, "GSTLAL_SVD_BANK_%d" % i, (0, 0), ".xml.gz", path = svdJob.output_path)
svd_bank_name = os.path.join(os.getcwd(), svd_bank_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment