Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
151
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
!73576
TrackRecord+TrkValHistUtils+EventBookkeeperMetaData: Fix cppcheck 2.14 warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrackRecord+TrkValHistUtils+EventBookkeeperMetaData: Fix cppcheck 2.14 warnings.
ssnyder/athena:cppcheck.TrackRecord-20240807
into
main
Overview
2
Commits
3
Pipelines
1
Changes
3
Merged
Scott Snyder
requested to merge
ssnyder/athena:cppcheck.TrackRecord-20240807
into
main
5 months ago
Overview
2
Commits
3
Pipelines
1
Changes
3
Expand
Prefer returning const references to members rather than copies.
👍
0
👎
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
929f5290
3 commits,
5 months ago
3 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Event/EventBookkeeperMetaData/EventBookkeeperMetaData/SkimDecision.h
+
2
−
2
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
*/
///////////////////////////////////////////////////////////////////
@@ -22,7 +22,7 @@ class SkimDecision
~
SkimDecision
();
// get() and set() methods
std
::
string
getName
()
const
{
return
m_name
;
}
const
std
::
string
&
getName
()
const
{
return
m_name
;
}
void
setName
(
const
std
::
string
&
name
);
bool
isAccepted
()
const
{
return
m_isAccepted
;
}
Loading