/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/CandAlgos/plugins/StatusCandViewSelector.cc
22 строки
679 B
Cms Build
Clang-Format
05 июн 2019, 13:58
05 июн 2019, 13:58
4bb99cd
Код
Авторство
О чём код?
/* \class StatusCandViewSelector * * Candidate Selector based on the status. * The input collection is a View<Candidate> * Usage: * * module leptons = StatusCandRefSelector { * InputTag src = myCollection * vint32 status = { 1 } * }; * * \author: Luca Lista, INFN * */ #include "FWCore/Framework/interface/MakerMacros.h" #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h" #include "CommonTools/UtilAlgos/interface/StatusSelector.h" #include "DataFormats/Candidate/interface/Candidate.h" typedef SingleObjectSelector<reco::CandidateView, StatusSelector> StatusCandViewSelector; DEFINE_FWK_MODULE(StatusCandViewSelector);