ATLAS Offline Software
Loading...
Searching...
No Matches
ZCut.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_zcut_header
6#define jetsubstructureutils_zcut_header
7
9
10namespace JetSubStructureUtils {
11 class ZCut : public SubstructureCalculator<double> {
12 public:
13 ZCut(unsigned int nSubJets) : m_nSubJets(nSubJets) {};
14
16 virtual double result(const fastjet::PseudoJet &jet) const;
17
18 private:
19 unsigned int m_nSubJets;
20 };
21}
22
23#endif
virtual TOut result(const xAOD::Jet &jet) const
virtual double result(const fastjet::PseudoJet &jet) const
Definition ZCut.cxx:13
ZCut(unsigned int nSubJets)
Definition ZCut.h:13
unsigned int m_nSubJets
Definition ZCut.h:19