Skip to content
Snippets Groups Projects

force all lines going to full/turcal stream to have persistreco=True

Merged Sevda Esen requested to merge sevda-issue582 into master
@@ -425,6 +425,16 @@ def _make_streams():
nobias_lines = [_hlt2_no_bias_line(), _hlt2_lumi_line()]
passthrough_lines = [_hlt2_hlt1passthrough_line(), _hlt2_lumi_line()]
lumi_lines = [_hlt2_lumi_line(), _hlt2_lumi_calibration_line()]
# make sure persistreco is true for full and turcal lines
for l in full_lines:
if "Hlt2Lumi" not in l.name:
l.persistreco = True
for l in turcal_lines:
if "Hlt2Lumi" not in l.name:
l.persistreco = True
return dict(
full=full_lines,
turboraw=turbo_lines,
Loading