ATLAS Offline Software
Loading...
Searching...
No Matches
GetL2CBmuonInDetTracksAlg.h
Go to the documentation of this file.
1/*
2 Get muon ID tracks from L2CB muons
3
4 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
5*/
6
7#ifndef TRIGMUONEF_GETL2CBMUONINDETTRACKSOUTALG_H
8#define TRIGMUONEF_GETL2CBMUONINDETTRACKSOUTALG_H
9
14
16{
17 public :
18
20 GetL2CBmuonInDetTracksAlg( 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_muonL2CBContainerKey{this,"MuonL2CBContainerLocation", "MuonsL2CB", "L2CB Muon Container"};
33 SG::WriteHandleKey<xAOD::TrackParticleContainer> m_idTrackOutputKey{this,"IDtrackOutputLocation", "IDTracksOut", "Output ID Tracks Container"};
34
35};
36
37#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 initialize() override
initialize
GetL2CBmuonInDetTracksAlg(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
SG::ReadHandleKey< xAOD::L2CombinedMuonContainer > m_muonL2CBContainerKey
virtual StatusCode execute(const EventContext &ctx) const override
execute the filter alg
SG::WriteHandleKey< xAOD::TrackParticleContainer > m_idTrackOutputKey
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