/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/PixelLowPtUtilities/interface/HitInfo.h
24 строки
767 B
Christopher Jones
Replace forward references with includes of Fwd.h files
18 фев 2026, 17:29
18 фев 2026, 17:29
bb39da7
Код
Авторство
О чём код?
#ifndef RecoTracker_PixelLowPtUtilities_HitInfo_h #define RecoTracker_PixelLowPtUtilities_HitInfo_h #include "DataFormats/DetId/interface/DetIdFwd.h" #include "DataFormats/TrackingRecHit/interface/TrackingRecHitFwd.h" #include "SimDataFormats/TrackingHit/interface/PSimHitFwd.h" #include <vector> #include <string> class TrackerTopology; class HitInfo { public: HitInfo(); ~HitInfo(); static std::string getInfo(const DetId &id, const TrackerTopology *tTopo); static std::string getInfo(const TrackingRecHit &recHit, const TrackerTopology *tTopo); static std::string getInfo(const std::vector<const TrackingRecHit *> &recHits, const TrackerTopology *tTopo); static std::string getInfo(const PSimHit &simHit, const TrackerTopology *tTopo); }; #endif