/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/RPCGeometry/interface/RPCRollSpecs.h
37 строк
773 B
Shahzad Malik Muzaffar
[GEOMETRY] Drop Geometry/CommonDetUnit package
28 май 2026, 13:09
28 май 2026, 13:09
bcab810
Код
Авторство
О чём код?
#ifndef Geometry_RPCSimAlgo_RPCRollSpecs_H #define Geometry_RPCSimAlgo_RPCRollSpecs_H /** \class RPCRollSpecs * Storage of the parameters of the RPC Chamber * using standard topologies * * \author M. Maggi - INFN Bari * */ #include <vector> #include <string> class StripTopology; #include "Geometry/CommonTopologies/interface/GeomDetType.h" class RPCRollSpecs : public GeomDetType { public: typedef std::vector<float> RPCSpecs; RPCRollSpecs(SubDetector rss, const std::string& name, const RPCSpecs& pars); ~RPCRollSpecs() override; const Topology& topology() const override; const StripTopology& specificTopology() const; const std::string& detName() const; private: StripTopology* _top; std::vector<float> _p; std::string _n; }; #endif