Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Alignment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Alignment
Merge requests
!141
Remove L0 from Alignment
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove L0 from Alignment
pkoppenb-RemoveL0-Alignment
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Patrick Koppenburg
requested to merge
pkoppenb-RemoveL0-Alignment
into
master
4 years ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
L0 is obsolete, see
LHCb!2735 (merged)
.
This builds in lhcb-run3-cleanup.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c7b45826
1 commit,
4 years ago
1 file
+
0
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Alignment/AlignTrTools/src/TrackMuonMatching.cpp
+
0
−
13
Options
@@ -23,7 +23,6 @@
#include
"Event/Track.h"
#include
"Event/TrackParameters.h"
#include
"Event/L0DUReport.h"
#include
"Event/ODIN.h"
// local
@@ -76,15 +75,6 @@ StatusCode TrackMuonMatching::execute() {
evnum
=
odin
->
eventNumber
();
}
int
L0decision
(
-
99
),
L0muon
(
-
99
),
L0calo
(
-
99
);
if
(
exist
<
LHCb
::
L0DUReport
>
(
LHCb
::
L0DUReportLocation
::
Default
)
)
{
LHCb
::
L0DUReport
*
l0rep
=
get
<
LHCb
::
L0DUReport
>
(
LHCb
::
L0DUReportLocation
::
Default
);
L0decision
=
int
(
l0rep
->
decision
()
);
L0muon
=
int
(
l0rep
->
channelDecisionByName
(
"MUON,minbias"
)
);
L0calo
=
int
(
l0rep
->
channelDecisionByName
(
"CALO"
)
);
debug
()
<<
" L0 decision "
<<
L0decision
<<
" L0calo "
<<
L0calo
<<
" L0muon "
<<
L0muon
<<
endmsg
;
}
if
(
msgLevel
(
MSG
::
DEBUG
)
)
debug
()
<<
"==> Execute"
<<
endmsg
;
Tracks
*
matchedTracks
=
new
Tracks
();
put
(
matchedTracks
,
m_tracksOutputLocation
);
@@ -292,9 +282,6 @@ StatusCode TrackMuonMatching::execute() {
Simone
->
column
(
"run"
,
runnum
).
ignore
();
Simone
->
column
(
"ev"
,
evnum
).
ignore
();
Simone
->
column
(
"L0decision"
,
L0decision
).
ignore
();
Simone
->
column
(
"L0muon"
,
L0muon
).
ignore
();
Simone
->
column
(
"L0calo"
,
L0calo
).
ignore
();
Simone
->
column
(
"Chi2"
,
chi2
).
ignore
();
Simone
->
column
(
"p"
,
mom
).
ignore
();
Simone
->
column
(
"pOT"
,
momOT
).
ignore
();
Loading