ATLAS Offline Software
Loading...
Searching...
No Matches
MuonJetDrTool.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
6// MuonJetDrTool.h
8#ifndef DERIVATIONFRAMEWORK_MuonJetDrTool_H
9#define DERIVATIONFRAMEWORK_MuonJetDrTool_H
10
11// Gaudi & Athena basics
14#include "GaudiKernel/ToolHandle.h"
19
20namespace DerivationFramework {
21 class MuonJetDrTool : public extends<AthAlgTool, IAugmentationTool> {
22 public:
23
24 using base_class::base_class;
25
26 virtual StatusCode initialize() override final;
27 virtual StatusCode addBranches(const EventContext& ctx) const override final;
28
29 private:
31 SG::ReadHandleKey<xAOD::JetContainer> m_jetSGKey{this, "JetContainerKey", "AntiKt4EMTopoJets"};
33
34 Gaudi::Property<float> m_jetMinPt{this, "JetMinPt", 20.e3, "Minimal pt cut of the jets to be considered"};
35 };
36} // namespace DerivationFramework
37#endif //
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
virtual StatusCode initialize() override final
virtual StatusCode addBranches(const EventContext &ctx) const override final
Gaudi::Property< float > m_jetMinPt
SG::ReadHandleKey< xAOD::MuonContainer > m_muonSGKey
SG::WriteDecorHandleKey< xAOD::MuonContainer > m_jetDR_SGKey
SG::ReadHandleKey< xAOD::JetContainer > m_jetSGKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
THE reconstruction tool.