Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
150
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!62743
fix muctpi DQ mult bits and thresholds plot
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix muctpi DQ mult bits and thresholds plot
aikoulou/athena:muctpi_fixes2
into
23.0
Overview
4
Commits
1
Pipelines
1
Changes
2
Merged
Aimilianos Koulouris
requested to merge
aikoulou/athena:muctpi_fixes2
into
23.0
1 year ago
Overview
4
Commits
1
Pipelines
1
Changes
2
Expand
Two simple fixes for a couple bugs in MUCTPI MLT plots
cc
@czodrows
@lsanfili
👍
0
👎
0
Merge request reports
Compare
23.0
23.0 (base)
and
latest version
latest version
b6b6bca1
1 commit,
1 year ago
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigT1/TrigT1CTMonitoring/src/BSMonitoringAlg.cxx
+
1
−
1
Options
@@ -597,7 +597,7 @@ TrigT1CTMonitoring::BSMonitoringAlgorithm::doMuctpi(const MuCTPI_Phase1_RDO* the
//decoded thresholds
for
(
uint
iThr
=
0
;
iThr
<
slices
[
iSlice
].
mlt
.
cnt
.
size
();
iThr
++
)
{
bool
thr
=
slices
[
iSlice
].
mlt
.
cnt
[
iThr
]
&
0x1
;
bool
thr
=
slices
[
iSlice
].
mlt
.
cnt
[
iThr
]
;
//this is a counter value [1-7], but only keeping whether it fired at all
if
(
thr
)
{
multThrX
=
iThr
;
Loading