Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
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
!66034
Fix for
ATLASSIM-6891
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix for
ATLASSIM-6891
bstanisl/athena:ATLASSIM-6891
into
main
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Beojan Stanislaus
requested to merge
bstanisl/athena:ATLASSIM-6891
into
main
1 year ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Closes
ATLASSIM-6891
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
cb8820ac
1 commit,
1 year ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Control/PileUpMT/src/ISkipEventIdxSvc.h
+
2
−
2
Options
@@ -38,8 +38,8 @@ struct fmt::formatter<ISkipEventIdxSvc::EvtId> : formatter<string_view> {
template
<
typename
FormatContext
>
auto
format
(
const
ISkipEventIdxSvc
::
EvtId
&
evtId
,
FormatContext
&
ctx
)
{
auto
out
=
memory_buffer
();
format_to
(
out
,
"[Run: {}, LB: {}, Evt: {} ({})]"
,
evtId
.
runNum
,
evtId
.
lbNum
,
evtId
.
evtNum
,
evtId
.
evtIdx
);
format_to
(
std
::
back_inserter
(
out
)
,
"[Run: {}, LB: {}, Evt: {} ({})]"
,
evtId
.
runNum
,
evtId
.
lbNum
,
evtId
.
evtNum
,
evtId
.
evtIdx
);
const
string_view
str
(
out
.
data
(),
out
.
size
());
return
formatter
<
string_view
>::
format
(
str
,
ctx
);
}
Loading