/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/IsolationAlgos/interface/EventDependentAbsVeto.h
19 строк
655 B
Cms Build
Clang-Format
05 июн 2019, 13:26
05 июн 2019, 13:26
5a4618f
Код
Авторство
О чём код?
#ifndef PhysicsTools_IsolationAlgos_EventDependentAbsVeto_h #define PhysicsTools_IsolationAlgos_EventDependentAbsVeto_h #include "DataFormats/RecoCandidate/interface/IsoDeposit.h" #include "FWCore/Framework/interface/Event.h" #include "FWCore/Framework/interface/EventSetup.h" namespace reco { namespace isodeposit { class EventDependentAbsVeto : public AbsVeto { public: ~EventDependentAbsVeto() override {} virtual void setEvent(const edm::Event &iEvent, const edm::EventSetup &iSetup) = 0; }; typedef std::vector<EventDependentAbsVeto *> EventDependentAbsVetos; } // namespace isodeposit } // namespace reco #endif