/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/PixelTrackFitting/interface/TracksWithHits.h
17 строк
658 B
mmusich
fix RecoTracker/Pixel* subsystems inclusions guards to comply withc cmssw rule 4.1
11 апр 2023, 10:15
11 апр 2023, 10:15
e88c626
Код
Авторство
О чём код?
#ifndef RecoTracker_PixelTrackFitting_TracksWithHits_h #define RecoTracker_PixelTrackFitting_TracksWithHits_h #include "DataFormats/TrackReco/interface/TrackFwd.h" #include "DataFormats/TrackingRecHit/interface/TrackingRecHit.h" #include "RecoTracker/TkSeedingLayers/interface/SeedingHitSet.h" #include <vector> namespace pixeltrackfitting { typedef std::pair<reco::Track *, std::vector<const TrackingRecHit *> > TrackWithRecHits; typedef std::pair<reco::Track *, SeedingHitSet> TrackWithTTRHs; typedef std::vector<TrackWithRecHits> TracksWithRecHits; typedef std::vector<TrackWithTTRHs> TracksWithTTRHs; } // namespace pixeltrackfitting #endif