/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimMuon/CSCDigitizer/src/CSCStripHitSim.h
31 строка
710 B
Cms Build
Clang-Format
09 май 2019, 07:09
09 май 2019, 07:09
737ce18
Код
Авторство
О чём код?
#ifndef MU_END_STRIP_HIT_SIM_H #define MU_END_STRIP_HIT_SIM_H /** \class CSCStripHitSim * * Class which builds simulated strip hits from wire * hits during digitization of Endcap Muon CSCs. * * \author Rick Wilkinson * */ #include "Geometry/CSCGeometry/interface/CSCGattiFunction.h" #include "SimMuon/CSCDigitizer/src/CSCDetectorHit.h" #include <vector> // declarations class CSCLayer; // class CSCDetectorHit; class CSCStripHitSim { public: // make strip hits from the given wire hits std::vector<CSCDetectorHit> &simulate(const CSCLayer *layer, const std::vector<CSCDetectorHit> &wireHits); private: CSCGattiFunction theGattiFunction; std::vector<CSCDetectorHit> newStripHits; }; #endif