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
Commits
fa6c2481
Commit
fa6c2481
authored
8 years ago
by
Scott Snyder
Committed by
Graeme Stewart
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
DV const correctness. (CaloRingerAlgs-00-00-29)
parent
70a1c555
Loading
Loading
1 merge request
!20779
WIP: Migrate DataQualityTools to ToolHandles
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Reconstruction/RecoAlgs/CaloRingerAlgs/Changelog
+5
-0
5 additions, 0 deletions
Reconstruction/RecoAlgs/CaloRingerAlgs/Changelog
Reconstruction/RecoAlgs/CaloRingerAlgs/src/xAODRingSetConfWriter.cxx
+2
-2
2 additions, 2 deletions
...ion/RecoAlgs/CaloRingerAlgs/src/xAODRingSetConfWriter.cxx
with
7 additions
and
2 deletions
Reconstruction/RecoAlgs/CaloRingerAlgs/Changelog
+
5
−
0
View file @
fa6c2481
2017-01-28 scott snyder <snyder@bnl.gov>
* Tagging CaloRingerAlgs-00-00-29.
* src/xAODRingSetConfWriter.cxx: DV const correctness.
2016-12-13 Werner Freund <wsfreund@cern.ch>
* Tagging CaloRingerAlgs-00-00-28.
...
...
This diff is collapsed.
Click to expand it.
Reconstruction/RecoAlgs/CaloRingerAlgs/src/xAODRingSetConfWriter.cxx
+
2
−
2
View file @
fa6c2481
...
...
@@ -2,7 +2,7 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: xAODRingSetConfWriter.cxx 78
7810
2016-12-
02 05:39:13
Z ssnyder $
// $Id: xAODRingSetConfWriter.cxx 78
9607
2016-12-
14 04:40:50
Z ssnyder $
// STL include(s)
#include
<algorithm>
...
...
@@ -195,7 +195,7 @@ StatusCode xAODRingSetConfWriter::copyKeyToStore( const std::string &key )
contCopy
->
reserve
(
cont
->
size
()
);
contAuxCopy
->
reserve
(
cont
->
size
()
);
ATH_MSG_DEBUG
(
"Copying object with key: "
<<
key
);
for
(
value_type
obj
:
*
cont
)
{
for
(
const
base_
value_type
*
obj
:
*
cont
)
{
ATH_MSG_VERBOSE
(
"Original object:"
);
// Print-out object:
obj
->
print
(
msg
(),
MSG
::
VERBOSE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment