Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
176
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
!41135
TileSimAlgs: Fix cppcheck warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TileSimAlgs: Fix cppcheck warnings.
ssnyder/athena:cppcheck.TileSimAlgs-20210227
into
master
Overview
2
Commits
1
Pipelines
1
Changes
17
Merged
Scott Snyder
requested to merge
ssnyder/athena:cppcheck.TileSimAlgs-20210227
into
master
3 years ago
Overview
2
Commits
1
Pipelines
1
Changes
17
Expand
Fix cppcheck warnings.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4c3d10af
1 commit,
3 years ago
17 files
+
57
−
58
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsFromPulse.h
+
5
−
5
Options
/*
Copyright (C) 2002-201
9
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
2
1 CERN for the benefit of the ATLAS collaboration
*/
//****************************************************************************
@@ -86,15 +86,15 @@ class TFile;
class
TileDigitsFromPulse
:
public
AthAlgorithm
{
public:
// Constructor
TileDigitsFromPulse
(
std
::
string
name
,
ISvcLocator
*
pSvcLocator
);
TileDigitsFromPulse
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
//Destructor
virtual
~
TileDigitsFromPulse
();
//Gaudi Hooks
StatusCode
initialize
();
//!< initialize method
StatusCode
execute
();
//!< execute method
StatusCode
finalize
();
//!< finalize method
virtual
StatusCode
initialize
()
override
;
//!< initialize method
virtual
StatusCode
execute
()
override
;
//!< execute method
virtual
StatusCode
finalize
()
override
;
//!< finalize method
private:
std
::
string
m_outputContainer
;
//!< Name of the output TileDigitsContainer
Loading