ATLAS Offline Software
TrigL2CaloLayersAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef TRIGCALOHYPO_TRIGL2CALOLAYERSALG
5 #define TRIGCALOHYPO_TRIGL2CALOLAYERSALG
6 
7 #include <string>
8 
9 #include "GaudiKernel/ToolHandle.h"
14 
20  public:
21 
22  TrigL2CaloLayersAlg( const std::string& name, ISvcLocator* pSvcLocator );
23 
24  virtual StatusCode initialize() override;
25  virtual StatusCode execute( const EventContext& context ) const override;
26 
27  private:
28  SG::ReadHandleKey<xAOD::TrigEMClusterContainer > m_caloContainerKey { this, "TrigClusterContainerKey", "LayersCluster","SG Key of clusters with layers"};
29  ToolHandleArray< ITrigL2CaloLayersHypoTool > m_hypoTools { this, "HypoTools", {}, "Hypo tools" };
30 };
31 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
TrigL2CaloLayersAlg
Implements LAr layer by layer cut based detection for the new HLT framework.
Definition: TrigL2CaloLayersAlg.h:19
ITrigL2CaloLayersHypoTool.h
TrigL2CaloLayersAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigL2CaloLayersAlg.cxx:29
TrigL2CaloLayersAlg::initialize
virtual StatusCode initialize() override
Definition: TrigL2CaloLayersAlg.cxx:19
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
TrigL2CaloLayersAlg::m_hypoTools
ToolHandleArray< ITrigL2CaloLayersHypoTool > m_hypoTools
Definition: TrigL2CaloLayersAlg.h:29
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition: HypoBase.h:13
TrigEMClusterContainer.h
TrigL2CaloLayersAlg::m_caloContainerKey
SG::ReadHandleKey< xAOD::TrigEMClusterContainer > m_caloContainerKey
Definition: TrigL2CaloLayersAlg.h:28
HypoBase.h
TrigL2CaloLayersAlg::TrigL2CaloLayersAlg
TrigL2CaloLayersAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigL2CaloLayersAlg.cxx:14