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
!20840
LUCID_RawDataByteStreamCnv: VarHandle migration.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
LUCID_RawDataByteStreamCnv: VarHandle migration.
ssnyder/athena:varHandle.LUCID_RawDataByteStreamCnv-20190202
into
master
Overview
4
Commits
1
Pipelines
1
Changes
4
Merged
Scott Snyder
requested to merge
ssnyder/athena:varHandle.LUCID_RawDataByteStreamCnv-20190202
into
master
6 years ago
Overview
4
Commits
1
Pipelines
1
Changes
4
Expand
Change LUCID_RawDataCnv to use WriteHandle. A few const cleanups.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
45cb0c96
1 commit,
6 years ago
4 files
+
49
−
60
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
ForwardDetectors/LUCID/LUCID_Cnv/LUCID_RawDataByteStreamCnv/LUCID_RawDataByteStreamCnv/LUCID_ByteStreamRawDataCnv.h
+
10
−
11
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
*/
#ifndef LUCID_BYTESTREAMRAWDATACNV_H
@@ -15,10 +15,9 @@
#include
"LUCID_RawEvent/LUCID_RawDataContainer.h"
#include
"LUCID_RawEvent/LUCID_RawData.h"
#include
"LUCID_RawDataByteStreamCnv/LUCID_RodDecoder.h"
#include
"StoreGate/WriteHandleKey.h"
class
StoreGateSvc
;
class
LUCID_RodDecoder
;
class
LUCID_ByteStreamRawDataCnv
:
public
AthAlgorithm
{
@@ -26,21 +25,21 @@ class LUCID_ByteStreamRawDataCnv: public AthAlgorithm {
public:
LUCID_ByteStreamRawDataCnv
(
const
std
::
string
&
name
,
ISvcLocator
*
pSvcLocator
);
~
LUCID_ByteStreamRawDataCnv
();
virtual
~
LUCID_ByteStreamRawDataCnv
();
StatusCode
initialize
();
StatusCode
execute
();
StatusCode
finalize
();
virtual
StatusCode
initialize
()
override
;
virtual
StatusCode
execute
()
override
;
virtual
StatusCode
finalize
()
override
;
StatusCode
fillContainer
(
std
::
vector
<
const
OFFLINE_FRAGMENTS_NAMESPACE
::
ROBFragment
*>
);
StatusCode
fillContainer
(
const
std
::
vector
<
const
OFFLINE_FRAGMENTS_NAMESPACE
::
ROBFragment
*>&
,
LUCID_RawDataContainer
&
container
)
const
;
private:
ServiceHandle
<
StoreGateSvc
>
m_storeGate
;
ServiceHandle
<
IROBDataProviderSvc
>
m_robDataProvider
;
std
::
string
m_lucid_RawDataContainerKey
;
SG
::
WriteHandleKey
<
LUCID_RawDataContainer
>
m_lucid_RawDataContainerKey
{
this
,
"lucid_RawDataContainerKey"
,
"Lucid_RawData"
,
""
};
LUCID_RawDataContainer
*
m_LUCID_RawDataContainer
;
LUCID_RodDecoder
m_rodDecoder
;
};
Loading