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
!32467
Move Run2CPMTowerMaker to DataHandles
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Move Run2CPMTowerMaker to DataHandles
smh/athena:CPM_DataHandles
into
master
Overview
3
Commits
1
Pipelines
1
Changes
2
Merged
Stewart Martin-Haugh
requested to merge
smh/athena:CPM_DataHandles
into
master
4 years ago
Overview
3
Commits
1
Pipelines
1
Changes
2
Expand
Part of
ATR-17916
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8b2f627a
1 commit,
4 years ago
2 files
+
20
−
59
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigT1/TrigT1CaloSim/TrigT1CaloSim/Run2CPMTowerMaker.h
+
7
−
7
Options
@@ -13,17 +13,18 @@
// STL
#include
<string>
#include
<vector>
// Athena/Gaudi
#include
"AthenaBaseComps/AthAlgorithm.h"
#include
"GaudiKernel/ServiceHandle.h"
#include
"AthContainers/DataVector.h"
#include
"GaudiKernel/ToolHandle.h"
#include
"StoreGate/ReadHandleKey.h"
#include
"StoreGate/WriteHandleKey.h"
#include
"xAODTrigL1Calo/CPMTowerContainer.h"
#include
"xAODTrigL1Calo/CPMTowerAuxContainer.h"
#include
"xAODTrigL1Calo/TriggerTowerContainer.h"
#include
"TrigT1Interfaces/TrigT1CaloDefs.h"
#include
"TrigT1CaloToolInterfaces/IL1CPMTowerTools.h"
@@ -54,7 +55,6 @@ class Run2CPMTowerMaker : public AthAlgorithm
{
typedef
xAOD
::
CPMTowerContainer
CPMTCollection
;
typedef
xAOD
::
CPMTowerAuxContainer
CPMTAuxCollection
;
typedef
xAOD
::
TriggerTowerContainer
TTCollection
;
public:
//-------------------------
@@ -80,10 +80,10 @@ class Run2CPMTowerMaker : public AthAlgorithm
ToolHandle
<
LVL1
::
IL1CPMTowerTools
>
m_CPMTowerTool
;
/** location of TriggerTowers in TES */
std
::
string
m_triggerTowerLocation
;
/** locations within the TES to store collections of JEs*/
std
::
string
m_cpmTowerLocation
;
SG
::
ReadHandleKey
<
xAOD
::
TriggerTowerContainer
>
m_triggerTowerKey
{
this
,
"TriggerTowerLocation"
,
TrigT1CaloDefs
::
xAODTriggerTowerLocation
};
SG
::
WriteHandleKey
<
CPMTCollection
>
m_cpmTowerKey
{
this
,
"CPMTowerLocation"
,
TrigT1CaloDefs
::
CPMTowerLocation
};
};
Loading