/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoJets/JetAlgorithms/interface/CATopJetHelper.h
27 строк
675 B
Silvio
header protection fix in RecoJets/JetAlgorithms/interface/CATopJetHelper.h
15 фев 2021, 13:50
15 фев 2021, 13:50
30063d1
Код
Авторство
О чём код?
#ifndef RecoJets_JetAlgorithms_interface_CATopJetHelper_h #define RecoJets_JetAlgorithms_interface_CATopJetHelper_h // \class CATopJetHelper // // \short Create tag info properties for CATopTags that can be computed // "on the fly". // // // \author Salvatore Rappoccio // \version first version on 1-May-2011 #include "DataFormats/JetReco/interface/Jet.h" #include "DataFormats/BTauReco/interface/CATopJetTagInfo.h" class CATopJetHelper { public: CATopJetHelper(double TopMass, double WMass) : TopMass_(TopMass), WMass_(WMass) {} reco::CATopJetProperties operator()(reco::Jet const& ihardJet) const; protected: double TopMass_; double WMass_; }; #endif