ATLAS Offline Software
TrigZVertexHypoAlg.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 TRIGMINBIAS_TRIGZVERTEXHYPOALG_H
5 #define TRIGMINBIAS_TRIGZVERTEXHYPOALG_H
6 
10 #include "TrigZVertexHypoTool.h"
11 #include <string>
12 
18 public:
19  TrigZVertexHypoAlg(const std::string& name, ISvcLocator* pSvcLocator);
20  virtual ~TrigZVertexHypoAlg() override;
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute(const EventContext& context) const override;
24  virtual StatusCode finalize() override;
25 
26 private:
27 
28  ToolHandleArray<TrigZVertexHypoTool> m_hypoTools{ this, "HypoTools", {}, "Tools that perform actual selection" };
29  SG::ReadHandleKey<xAOD::TrigCompositeContainer> m_zVertexCollKey{ this, "ZVertexKey", "Undefined", "Input" };
30 
31 };
32 
33 #endif // TRIGMINBIAS_TRIGZVERTEXHYPOALG_H
TrigZVertexHypoAlg::TrigZVertexHypoAlg
TrigZVertexHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigZVertexHypoAlg.cxx:16
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
TrigZVertexHypoAlg::m_zVertexCollKey
SG::ReadHandleKey< xAOD::TrigCompositeContainer > m_zVertexCollKey
Definition: TrigZVertexHypoAlg.h:29
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigZVertexHypoAlg::m_hypoTools
ToolHandleArray< TrigZVertexHypoTool > m_hypoTools
Definition: TrigZVertexHypoAlg.h:28
TrigCompositeAuxContainer.h
TrigCompositeContainer.h
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
TrigZVertexHypoAlg::finalize
virtual StatusCode finalize() override
Definition: TrigZVertexHypoAlg.cxx:33
TrigZVertexHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigZVertexHypoAlg.cxx:38
TrigZVertexHypoTool.h
HypoBase.h
TrigZVertexHypoAlg::~TrigZVertexHypoAlg
virtual ~TrigZVertexHypoAlg() override
Definition: TrigZVertexHypoAlg.cxx:21
TrigZVertexHypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigZVertexHypoAlg.cxx:25
TrigZVertexHypoAlg
Uses Verter weights found by TrigZFinderAlg/Tool to select events with high multiplicity.
Definition: TrigZVertexHypoAlg.h:17