Skip to content
Snippets Groups Projects
Commit 5a3f871a authored by Sevda Esen's avatar Sevda Esen
Browse files

remove unused root location

parent 13864787
No related tags found
1 merge request!2736Draft: clean up and simplify the config
Pipeline #6576983 failed
......@@ -43,9 +43,6 @@ from .persistence import persist_line_outputs
log = logging.getLogger(__name__)
ROOT_RAW_EVENT_LOCATION = '/Event/DAQ/RawEvent'
class Reconstruction(namedtuple('Reconstruction', ['node'])): # noqa
"""Immutable object fully qualifiying the output of a reconstruction data flow with prefilters.
......
......@@ -38,8 +38,6 @@ from .selreports import make_selreports
log = logging.getLogger(__name__)
ROOT_RAW_EVENT_LOCATION = '/Event/DAQ/RawEvent'
from .streams import (HLT1_REPORT_RAW_BANK_TYPES, HLT2_REPORT_RAW_BANK_TYPES,
get_default_routing_bits)
......
......@@ -95,7 +95,7 @@ class Stream(object):
return [default_raw_banks(b) for b in bank_types]
def _physics_lines(self):
physics_lines = [l for l in self.lines if l.produces_output]
physics_lines = [l for l in self.lines if l.produces_output and not isinstance(l, Hlt2LuminosityLine)]
return sorted(physics_lines, key=lambda l: l.name)
def _lumi_lines(self):
......
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