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
!71748
main-coverity-FPGATrackSimMaps
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
main-coverity-FPGATrackSimMaps
sroe/athena:main-coverity-FPGATrackSimMaps
into
main
Overview
3
Commits
1
Pipelines
1
Changes
2
Merged
Shaun Roe
requested to merge
sroe/athena:main-coverity-FPGATrackSimMaps
into
main
11 months ago
Overview
3
Commits
1
Pipelines
1
Changes
2
Expand
address coverity 16827; ensure variables are initialised.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
eeffaaf2
1 commit,
11 months ago
2 files
+
9
−
8
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/EFTracking/FPGATrackSim/FPGATrackSimMaps/FPGATrackSimMaps/FPGATrackSimRegionMap.h
+
5
−
5
Options
// Copyright (C) 2002-202
3
CERN for the benefit of the ATLAS collaboration
// Copyright (C) 2002-202
4
CERN for the benefit of the ATLAS collaboration
/**
* @file FPGATrackSimRegionMap.h
@@ -51,10 +51,10 @@ class FPGATrackSimHit;
struct
FPGATrackSimRegionBoundaries
{
int
phi_min
;
// minimum phi ID
int
phi_max
;
// maximum phi ID
int
eta_min
;
// minimum eta ID
int
eta_max
;
// minimum eta ID
int
phi_min
{}
;
// minimum phi ID
int
phi_max
{}
;
// maximum phi ID
int
eta_min
{}
;
// minimum eta ID
int
eta_max
{}
;
// minimum eta ID
};
Loading