/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/CandAlgos/interface/CandMatcher.h
16 строк
590 B
Jonas Rembser
Make CandMatcher and NewCandMatcher aliases and not derived classes
14 сен 2021, 18:09
14 сен 2021, 18:09
f076690
Код
Авторство
О чём код?
#ifndef CandAlgos_CandMatcher_h #define CandAlgos_CandMatcher_h /* \class CandMatcher * * Producer fo simple Candidate match map * */ #include "CommonTools/UtilAlgos/interface/Matcher.h" #include "DataFormats/Candidate/interface/Candidate.h" #include "CommonTools/CandUtils/interface/CandMapTrait.h" namespace reco::modules { template <typename S, typename Collection = CandidateCollection, typename D = DeltaR<reco::Candidate> > using CandMatcher = Matcher<Collection, Collection, S, D, typename reco::helper::CandMapTrait<Collection>::type>; } // namespace reco::modules #endif