ATLAS Offline Software
TauVertexedClusterDecorator.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TAURECTOOLS_TAUVERTEXEDCLUSTERDECORATOR_H
6 #define TAURECTOOLS_TAUVERTEXEDCLUSTERDECORATOR_H
7 
10 
11 #include "xAODJet/Jet.h"
12 
20 
21 public:
22 
24 
25  TauVertexedClusterDecorator(const std::string& name);
26 
27  virtual ~TauVertexedClusterDecorator() = default;
28 
29  virtual StatusCode initialize() override;
30 
31  virtual StatusCode execute(xAOD::TauJet& tau) const override;
32 
33 private:
34 
35  Gaudi::Property<std::string> m_seedJet{this, "SeedJet", ""};
36 
39 };
40 
41 #endif //TAURECTOOLS_TAUVERTEXEDCLUSTERDECORATOR_H
TauVertexedClusterDecorator::m_seedJet
Gaudi::Property< std::string > m_seedJet
Definition: TauVertexedClusterDecorator.h:35
Jet.h
PropertyWrapper.h
ASG_TOOL_CLASS2
#define ASG_TOOL_CLASS2(CLASSNAME, INT1, INT2)
Definition: AsgToolMacros.h:77
TauVertexedClusterDecorator::execute
virtual StatusCode execute(xAOD::TauJet &tau) const override
Execute - called for each tau candidate.
Definition: TauVertexedClusterDecorator.cxx:36
xAOD::CaloCluster_v1::State
State
enum of possible signal states.
Definition: CaloCluster_v1.h:307
TauRecToolBase.h
TauRecToolBase
The base class for all tau tools.
Definition: TauRecToolBase.h:21
TauVertexedClusterDecorator::m_clusterState
xAOD::CaloCluster::State m_clusterState
Calibration state of cluster.
Definition: TauVertexedClusterDecorator.h:38
TauVertexedClusterDecorator::~TauVertexedClusterDecorator
virtual ~TauVertexedClusterDecorator()=default
TauVertexedClusterDecorator::TauVertexedClusterDecorator
TauVertexedClusterDecorator(const std::string &name)
Definition: TauVertexedClusterDecorator.cxx:10
TauVertexedClusterDecorator
Decorate CaloVertexedTopoCluster to the tau candidate.
Definition: TauVertexedClusterDecorator.h:19
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAOD::TauJet_v3
Class describing a tau jet.
Definition: TauJet_v3.h:41
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
ITauToolBase
The base class for all tau tools.
Definition: ITauToolBase.h:30
TauVertexedClusterDecorator::initialize
virtual StatusCode initialize() override
Tool initializer.
Definition: TauVertexedClusterDecorator.cxx:16