92// Declare a set of float variables to save the cuts on the particles:
93// -m_jetPtCut: Cut on the pt of the jets.
94// -m_jetEtaCut: Cut on the eta of the jets.
95// -m_leadingBHadronPtCut: Cut on the pt of the leading B-hadron.
96// -m_leadingCHadronPtCut: Cut on the pt of the leading C-hadron.
97// -m_leadingHadronPtRatioCut: Cut on the ratio between the pt of the leading hadron and the pt of its associated jet.
98
99 Gaudi::Property<float> m_jetPtCut{this, "jetPtCut", 15000., "Cut on the jets pt that are considered to compute the HF classification."};
100 Gaudi::Property<float> m_jetEtaCut{this, "jetEtaCut", 2.5, "Cut on the jets eta that are considered to compute the HF classification."};
101 Gaudi::Property<float> m_leadingBHadronPtCut{this, "leadingBHadronPtCut", 5000., "Cut on the B-hadrons that are considered to compute the HF classification."};
102 Gaudi::Property<float> m_leadingCHadronPtCut{this, "leadingCHadronPtCut", 5000., "Cut on the C-hadrons that are considered to compute the HF classification."};
103 Gaudi::Property<float> m_leadingHadronPtRatioCut{this, "leadingHadronPtRatioCut", -1., "Cut on the ratio between the pt of the leading hadron matched to a jet and the jet pt."};