Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Moore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
Moore
Commits
5a3f871a
Commit
5a3f871a
authored
1 year ago
by
Sevda Esen
Browse files
Options
Downloads
Patches
Plain Diff
remove unused root location
parent
13864787
Branches
sevda-clean-up-config
No related tags found
1 merge request
!2736
Draft: clean up and simplify the config
Pipeline
#6576983
failed
1 year ago
Stage: check
Stage: build
Stage: docs
Stage: .post
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Hlt/Moore/python/Moore/config.py
+0
-3
0 additions, 3 deletions
Hlt/Moore/python/Moore/config.py
Hlt/Moore/python/Moore/reports_writers.py
+0
-2
0 additions, 2 deletions
Hlt/Moore/python/Moore/reports_writers.py
Hlt/Moore/python/Moore/streams.py
+1
-1
1 addition, 1 deletion
Hlt/Moore/python/Moore/streams.py
with
1 addition
and
6 deletions
Hlt/Moore/python/Moore/config.py
+
0
−
3
View file @
5a3f871a
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Hlt/Moore/python/Moore/reports_writers.py
+
0
−
2
View file @
5a3f871a
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Hlt/Moore/python/Moore/streams.py
+
1
−
1
View file @
5a3f871a
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment