ATLAS Offline Software
IBTaggingSelectionJsonTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef CPIBTAGGINGSELECTIONJSONTOOL_H
6 #define CPIBTAGGINGSELECTIONJSONTOOL_H
7 
8 #include "AsgTools/IAsgTool.h"
9 #include "xAODJet/Jet.h"
10 
11 class IBTaggingSelectionJsonTool : virtual public asg::IAsgTool {
12 
13  ASG_TOOL_INTERFACE( IBTagSelectionJsonTool )
14 
15  public:
16  virtual int accept( const xAOD::Jet& jet ) const = 0;
17 
18  virtual double getTaggerDiscriminant ( const xAOD::Jet& jet ) const = 0;
19 
20  };
21 #endif // CPIBTAGGINGSELECTIONJSONTOOL_H
Jet.h
IBTaggingSelectionJsonTool::accept
virtual int accept(const xAOD::Jet &jet) const =0
asg::IAsgTool
Base class for the dual-use tool interface classes.
Definition: IAsgTool.h:41
jet
Definition: JetCalibTools_PlotJESFactors.cxx:23
ASG_TOOL_INTERFACE
#define ASG_TOOL_INTERFACE(CLASSNAME)
Definition: AsgToolMacros.h:40
IAsgTool.h
xAOD::Jet_v1
Class describing a jet.
Definition: Jet_v1.h:57
IBTaggingSelectionJsonTool::getTaggerDiscriminant
virtual double getTaggerDiscriminant(const xAOD::Jet &jet) const =0
IBTaggingSelectionJsonTool
Definition: IBTaggingSelectionJsonTool.h:11