Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
159
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
!48692
TrigMinBias: fix compiler warning
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrigMinBias: fix compiler warning
tsulaia/athena:master-compwarning
into
master
Overview
3
Commits
1
Pipelines
1
Changes
2
Merged
Vakhtang Tsulaia
requested to merge
tsulaia/athena:master-compwarning
into
master
3 years ago
Overview
3
Commits
1
Pipelines
1
Changes
2
Expand
ATLAS coding standards require that the name of private non-static members start with
m_
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8945429f
1 commit,
3 years ago
2 files
+
3
−
3
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/TrigAlgorithms/TrigMinBias/src/TrackCountHypoTool.cxx
+
2
−
2
Options
@@ -30,8 +30,8 @@ StatusCode TrackCountHypoTool::decide(TrkCountsInfo &trkinfo) const
std
::
vector
<
int
>
counts
;
trkinfo
.
counts
->
getDetail
<
std
::
vector
<
int
>>
(
"counts"
,
counts
);
if
(
m_exclusive
)
{
if
(
counts
[
0
]
>
E
xclusivityThreshold
)
{
ATH_MSG_DEBUG
(
"Lowest pt tracks count "
<<
counts
[
0
]
<<
" exceeds exclusivity cut, "
<<
E
xclusivityThreshold
<<
" rejecting"
);
if
(
counts
[
0
]
>
m_e
xclusivityThreshold
)
{
ATH_MSG_DEBUG
(
"Lowest pt tracks count "
<<
counts
[
0
]
<<
" exceeds exclusivity cut, "
<<
m_e
xclusivityThreshold
<<
" rejecting"
);
return
StatusCode
::
SUCCESS
;
}
}
Loading