/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/MuonIdentification/interface/TimeMeasurementSequence.h
28 строк
714 B
Cms Build
Clang-Format
03 июн 2019, 06:38
03 июн 2019, 06:38
906af8e
Код
Авторство
О чём код?
#ifndef MuonIdentification_TimeMeasurementSequence_h #define MuonIdentification_TimeMeasurementSequence_h /** \class reco::TimeMeasurementSequence TimeMeasurementSequence.h RecoMuon/MuonIdentification/interface/TimeMeasurementSequence.h * * A class holding a set of individual time measurements along the muon trajectory * * \author Piotr Traczyk, CERN * * */ #include <vector> class TimeMeasurementSequence { public: std::vector<double> dstnc; std::vector<double> local_t0; std::vector<double> weightTimeVtx; std::vector<double> weightInvbeta; double totalWeightInvbeta; double totalWeightTimeVtx; TimeMeasurementSequence() : totalWeightInvbeta(0), totalWeightTimeVtx(0) {} }; #endif