ATLAS Offline Software
KtDeltaR.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef jetsubstructureutils_ktdeltar_header
6 #define jetsubstructureutils_ktdeltar_header
7 
9 
10 namespace JetSubStructureUtils {
11  class KtDeltaR : public SubstructureCalculator<double> {
12  public:
13  KtDeltaR(double jetrad) : m_jetrad(jetrad) {};
14 
16  virtual double result(const fastjet::PseudoJet &jet) const;
17 
18  private:
19  double m_jetrad;
20  };
21 }
22 
23 #endif
JetSubStructureUtils::KtDeltaR::KtDeltaR
KtDeltaR(double jetrad)
Definition: KtDeltaR.h:13
JetSubStructureUtils
Definition: Angularity.h:10
JetSubStructureUtils::SubstructureCalculator::result
virtual TOut result(const xAOD::Jet &jet) const
Definition: SubstructureCalculator.h:25
SubstructureCalculator.h
jet
Definition: JetCalibTools_PlotJESFactors.cxx:23
JetSubStructureUtils::KtDeltaR
Definition: KtDeltaR.h:11
JetSubStructureUtils::KtDeltaR::result
virtual double result(const fastjet::PseudoJet &jet) const
Definition: KtDeltaR.cxx:14
JetSubStructureUtils::KtDeltaR::m_jetrad
double m_jetrad
Definition: KtDeltaR.h:19
JetSubStructureUtils::SubstructureCalculator
Definition: SubstructureCalculator.h:21