/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/TrackerSeedGenerator/src/SeparatingTSG.cc
20 строк
965 B
Luca Ferragina
Remove SealModule from RecoMuon/TrackerSeedGenerator
09 янв 2025, 14:03
09 янв 2025, 14:03
79465de
Код
Авторство
О чём код?
#include "RecoMuon/TrackerSeedGenerator/interface/SeparatingTSG.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "DataFormats/TrackerCommon/interface/TrackerTopology.h" SeparatingTSG::SeparatingTSG(const edm::ParameterSet& pset, edm::ConsumesCollector& IC) : CompositeTSG(pset, IC) {} SeparatingTSG::~SeparatingTSG() {} void SeparatingTSG::trackerSeeds(const TrackCand& muonTrackCand, const TrackingRegion& region, const TrackerTopology* tTopo, std::vector<TrajectorySeed>& result) { unsigned int sel = selectTSG(muonTrackCand, region); LogDebug(theCategory) << "choosing: " << theNames[sel] << ", at index [" << sel << "]"; if (theTSGs[sel]) { std::vector<TrajectorySeed> tmpResult; theTSGs[sel]->trackerSeeds(muonTrackCand, region, tTopo, tmpResult); result.insert(result.end(), tmpResult.begin(), tmpResult.end()); } }