/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/TrackFindingTracklet/interface/TrackletEventProcessor.h
70 строк
2 KB
Andrew Hart
Removed a bunch of obsolete classes.
15 янв 2026, 17:31
15 янв 2026, 17:31
2be4f2c
Код
Авторство
О чём код?
// TrackletEventProcessor: Class responsible for the main event processing for the tracklet algorithm #ifndef L1Trigger_TrackFindingTracklet_interface_TrackletEventProcessor_h #define L1Trigger_TrackFindingTracklet_interface_TrackletEventProcessor_h #include "L1Trigger/TrackFindingTracklet/interface/Timer.h" #include <map> #include <memory> #include <vector> #include <deque> #include <string> namespace tt { class Setup; } namespace trklet { class Settings; class SLHCEvent; class Globals; class Sector; class HistBase; class Track; class StubStreamData; class TrackletEventProcessor { public: TrackletEventProcessor(); ~TrackletEventProcessor(); void init(Settings const& theSettings, const tt::Setup* setup = nullptr); void event(SLHCEvent& ev, std::vector<std::vector<std::string>>& streamsTrackRaw, std::vector<std::vector<StubStreamData>>& streamsStubRaw); void printSummary(); const std::vector<Track>& tracks() const { return tracks_; } private: void configure(std::istream& inwire, std::istream& inmem, std::istream& inproc); const Settings* settings_{nullptr}; std::unique_ptr<Globals> globals_; std::unique_ptr<Sector> sector_; HistBase* histbase_{}; int eventnum_ = {0}; Timer cleanTimer_; Timer addStubTimer_; Timer InputRouterTimer_; Timer VMRouterTimer_; Timer TPTimer_; Timer TPDTimer_; Timer MPTimer_; Timer FTTimer_; Timer PDTimer_; std::vector<Track> tracks_; }; }; // namespace trklet #endif