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
!21029
Fix
ATLASRECTS-4566
(uint initialized with -1)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix
ATLASRECTS-4566
(uint initialized with -1)
ponyisi/athena:master-fix-uint-issue
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Peter Onyisi
requested to merge
ponyisi/athena:master-fix-uint-issue
into
master
6 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ee8f3559
1 commit,
6 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
InnerDetector/InDetMonitoring/InDetPerformanceMonitoring/src/IDPerfMonEoverP.cxx
+
1
−
1
Options
@@ -540,7 +540,7 @@ StatusCode IDPerfMonEoverP::execute()
const
xAOD
::
TrackParticle
*
mytp
=
(
*
iter
)
->
trackParticle
();
if
(
mytp
){
uint8_t
dummy
(
-
1
);
uint8_t
dummy
(
0
);
auto
summaryByDetector
=
[
&
mytp
,
&
dummy
](
const
xAOD
::
SummaryType
&
t
){
return
mytp
->
summaryValue
(
dummy
,
t
)
?
(
dummy
)
:
(
-
1
);
};
Loading