/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/TkSeedGenerator/src/MultiHitGenerator.cc
19 строк
665 B
Cms Build
Clang-Format
26 июн 2019, 13:18
26 июн 2019, 13:18
485ac1c
Код
Авторство
О чём код?
#include "RecoTracker/TkSeedGenerator/interface/MultiHitGenerator.h" #include <iostream> #include <typeinfo> const OrderedMultiHits& MultiHitGenerator::run(const TrackingRegion& region, const edm::Event& ev, const edm::EventSetup& es) { theHitSets.clear(); // called multiple time for the same seed collection theHitSets.reserve(localRA.upper()); hitSets(region, theHitSets, ev, es); theHitSets.shrink_to_fit(); localRA.update(theHitSets.size()); return theHitSets; } void MultiHitGenerator::clear() { theHitSets.clear(); theHitSets.shrink_to_fit(); }