/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/LSTCore/interface/TiltedGeometry.h
30 строк
720 B
Andres Rios Tascon
Added LSTGeometry package and associated ESProducer
22 май 2026, 15:39
22 май 2026, 15:39
f954f8e
Код
Авторство
О чём код?
#ifndef RecoTracker_LSTCore_interface_TiltedGeometry_h #define RecoTracker_LSTCore_interface_TiltedGeometry_h #include "RecoTracker/LSTGeometry/interface/Slope.h" #include <map> #include <string> #include <vector> namespace lst { class TiltedGeometry { private: std::map<unsigned int, float> drdzs_; // dr/dz slope std::map<unsigned int, float> dxdys_; // dx/dy slope public: TiltedGeometry() = default; TiltedGeometry(std::string const&); TiltedGeometry(lstgeometry::Slopes const&); void load(std::string const&); void load(lstgeometry::Slopes const&); float getDrDz(unsigned int detid) const; float getDxDy(unsigned int detid) const; }; } // namespace lst #endif