/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/MuonReco/interface/MuonShower.h
23 строки
824 B
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#ifndef MuonReco_MuonShower_h #define MuonReco_MuonShower_h #include <vector> namespace reco { namespace io_v1 { struct MuonShower { /// number of all the muon RecHits per chamber crossed by a track (1D hits) std::vector<int> nStationHits; /// number of the muon RecHits used by segments per chamber crossed by a track std::vector<int> nStationCorrelatedHits; /// the transverse size of the hit cluster std::vector<float> stationShowerSizeT; /// the radius of the cone containing the all the hits around the track std::vector<float> stationShowerDeltaR; MuonShower() : nStationHits(0), nStationCorrelatedHits(0), stationShowerSizeT(0), stationShowerDeltaR(0) {} }; } // namespace io_v1 using MuonShower = io_v1::MuonShower; } // namespace reco #endif