/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimMuon/RPCDigitizer/test/Mapping.h
31 строка
423 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
#ifndef ReadED_Mapping_h #define ReadED_Mapping_h #include <string> #include <map> struct chamstrip{ region; ringwheel; sector; subsector; station; layer; roll; strip; } class Mapping{ public: Mapping(); Mapping(int wheel, int sector); ~Mapping(); chamstrip stripind(std::string lbname, int channel); private: int w; int s; std::map<std::string, std::map<int,int> > maps; }; #endif