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
!20839
ZdcByteStream: VarHandle migration.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ZdcByteStream: VarHandle migration.
ssnyder/athena:varHandle.ZdcByteStream-20190201
into
master
Overview
4
Commits
1
Pipelines
1
Changes
2
Merged
Scott Snyder
requested to merge
ssnyder/athena:varHandle.ZdcByteStream-20190201
into
master
6 years ago
Overview
4
Commits
1
Pipelines
1
Changes
2
Expand
Change ZdcByteStreamRawDataV2 to use ReadHandle. Make reentrant.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a0d92ea1
1 commit,
6 years ago
2 files
+
19
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ForwardDetectors/ZDC/ZdcCnv/ZdcByteStream/ZdcByteStream/ZdcByteStreamRawDataV2.h
+
11
−
7
Options
/*
Copyright (C) 2002-201
7
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-201
9
CERN for the benefit of the ATLAS collaboration
*/
/*
@@ -17,7 +17,10 @@
#include
<map>
#include
<string>
#include
"AthenaBaseComps/AthAlgorithm.h"
#include
"ZdcByteStream/ZdcDefs.h"
#include
"xAODTrigL1Calo/TriggerTowerContainer.h"
#include
"AthenaBaseComps/AthReentrantAlgorithm.h"
#include
"StoreGate/ReadHandleKey.h"
#include
"AthContainers/DataVector.h"
class
ISvcLocator
;
@@ -28,15 +31,15 @@ class ZdcDigitsCollection;
#include
"xAODTrigL1Calo/TriggerTowerContainer.h"
class
ZdcByteStreamRawDataV2
:
public
AthAlgorithm
class
ZdcByteStreamRawDataV2
:
public
Ath
Reentrant
Algorithm
{
public:
ZdcByteStreamRawDataV2
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
virtual
~
ZdcByteStreamRawDataV2
();
virtual
StatusCode
initialize
();
virtual
StatusCode
execute
(
)
;
virtual
StatusCode
finalize
();
virtual
StatusCode
initialize
()
override
;
virtual
StatusCode
execute
(
const
EventContext
&
ctx
)
const
override
;
virtual
StatusCode
finalize
()
override
;
private:
typedef
std
::
map
<
unsigned
int
,
const
xAOD
::
TriggerTower
*>
ZdcTriggerTowersMap
;
@@ -46,7 +49,8 @@ private:
/// ZDC Container and collection
/// StoreGate key
std
::
string
m_ZdcTriggerTowerContainerLocation
;
SG
::
ReadHandleKey
<
xAOD
::
TriggerTowerContainer
>
m_ZdcTriggerTowerContainerLocation
{
this
,
"ZdcTriggerTowerContainerLocation"
,
ZdcDefs
::
ZdcTriggerTowerContainerLocation
,
""
};
//void setupZdcTriggerTowersMap(const xAOD::TriggerTowerContainer* ttCollection);
Loading