ATLAS Offline Software
Loading...
Searching...
No Matches
MergeMuonInDetTracksAlg.h
Go to the documentation of this file.
1/*
2 Merge inside-out, outside-in and L2mt inner detector track containers
3
4 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef TRIGMUONEF_MERGEMUONINDETTRACKSOUTALG_H
8#define TRIGMUONEF_MERGEMUONINDETTRACKSOUTALG_H
9
14
16{
17 public :
18
20 MergeMuonInDetTracksAlg( const std::string& name, ISvcLocator* pSvcLocator );
21
23 virtual StatusCode initialize() override;
24
26 virtual StatusCode execute(const EventContext& ctx) const override;
27
28
29 private :
30
31 SG::ReadHandleKey<xAOD::TrackParticleContainer> m_fullIDtrackContainerKey{this,"FullIDTrackContainerLocation", "FullIDTracks", "Full ID Tracks Container"};
32 SG::ReadHandleKey<xAOD::L2CombinedMuonContainer> m_muonCBContainerKey{this,"MuonCBContainerLocation", "MuonsCB", "CB Muon Container"};
33 SG::ReadHandleKey<xAOD::L2CombinedMuonContainer> m_muonInsideOutContainerKey{this,"MuonInsideOutContainerLocation", "MuonsInsideOut", "InsideOut Muon Container"};
34 SG::ReadHandleKey<xAOD::L2CombinedMuonContainer> m_muonL2mtContainerKey{this,"MuonL2mtContainerLocation", "MuonsL2mt", "L2mt Muons Container"};
35 SG::WriteHandleKey<xAOD::TrackParticleContainer> m_idTrackOutputKey{this,"IDtrackOutputLocation", "IDTracksOut", "Output ID Tracks Container"};
36
37};
38
39#endif
Property holding a SG store/key/clid from which a ReadHandle is made.
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode execute(const EventContext &ctx) const override
execute the filter alg
SG::ReadHandleKey< xAOD::L2CombinedMuonContainer > m_muonCBContainerKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_fullIDtrackContainerKey
virtual StatusCode initialize() override
initialize
SG::ReadHandleKey< xAOD::L2CombinedMuonContainer > m_muonInsideOutContainerKey
SG::WriteHandleKey< xAOD::TrackParticleContainer > m_idTrackOutputKey
MergeMuonInDetTracksAlg(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
SG::ReadHandleKey< xAOD::L2CombinedMuonContainer > m_muonL2mtContainerKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
#define private