/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/TrackerSeedGenerator/src/TrackerSeedGenerator.cc
16 строк
788 B
Cms Build
Clang-Format
03 июн 2019, 06:33
03 июн 2019, 06:33
f667b1b
Код
Авторство
О чём код?
#include "RecoMuon/TrackerSeedGenerator/interface/TrackerSeedGenerator.h" #include "DataFormats/TrackerCommon/interface/TrackerTopology.h" #include "RecoMuon/TrackingTools/interface/MuonServiceProxy.h" void TrackerSeedGenerator::init(const MuonServiceProxy* service) { theProxyService = service; } void TrackerSeedGenerator::trackerSeeds(const TrackCand& can, const TrackingRegion& region, const TrackerTopology* tTopo, TrackerSeedGenerator::BTSeedCollection& result) { const edm::EventSetup& es = theProxyService->eventSetup(); run(result, *theEvent, es, region); return; } void TrackerSeedGenerator::setEvent(const edm::Event& event) { theEvent = &event; }