ATLAS Offline Software
ITool_TauConstituentGetter.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef PANTAUALGS_ITOOL_TAUCONSTITUENTGETTER_H
6 #define PANTAUALGS_ITOOL_TAUCONSTITUENTGETTER_H
7 
8 #include "AsgTools/IAsgTool.h"
9 
10 #include <string>
11 
12 namespace PanTau{
13  class TauConstituent;
14 }
15 
16 #include "xAODTau/TauJet.h"
17 
18 namespace PanTau {
19 
20 
27  class ITool_TauConstituentGetter : virtual public asg::IAsgTool {
28 
30 
31  public:
32 
33  virtual bool isInitialized() = 0;
35  std::vector<TauConstituent*>& outputList) const = 0;
36 
37  };
38 
39 }
40 #endif //PANTAUALGS_ITOOL_TAUCONSTITUENTGETTER_H
asg::IAsgTool
Base class for the dual-use tool interface classes.
Definition: IAsgTool.h:41
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
PanTau::ITool_TauConstituentGetter::GetTauConstituents
virtual StatusCode GetTauConstituents(const xAOD::TauJet *tauJet, std::vector< TauConstituent * > &outputList) const =0
xAOD::TauJet_v3
Class describing a tau jet.
Definition: TauJet_v3.h:41
ASG_TOOL_INTERFACE
#define ASG_TOOL_INTERFACE(CLASSNAME)
Definition: AsgToolMacros.h:40
IAsgTool.h
PanTau
xAOD EDM
Definition: Reconstruction/PanTau/PanTauAlgs/PanTauAlgs/HelperFunctions.h:18
PanTau::ITool_TauConstituentGetter::isInitialized
virtual bool isInitialized()=0
TauJet.h
PanTau::ITool_TauConstituentGetter
Interface for Tool_TauConstituentGetter.
Definition: ITool_TauConstituentGetter.h:27