/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/CandAlgos/plugins/StatusCandSelector.cc
21 строка
623 B
Cms Build
Clang-Format
05 июн 2019, 13:58
05 июн 2019, 13:58
4bb99cd
Код
Авторство
О чём код?
/* \class StatusCandSelector * * Candidate Selector based on the status * Usage: * * module leptons = StatusCandSelector { * 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::CandidateCollection, StatusSelector> StatusCandSelector; DEFINE_FWK_MODULE(StatusCandSelector);