/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/TrackerMap/interface/TmApvPair.h
26 строк
474 B
Cms Build
Clang-Format
29 май 2019, 08:26
29 май 2019, 08:26
a1ca1e7
Код
Авторство
О чём код?
#include <map> #include <string> class TmModule; class TmApvPair { public: TmApvPair(int ident, int crate); ~TmApvPair(); int red, green, blue; float value; std::string text; int count; int idex; //Fed and position in fed int crate; TmModule* mod; int mpos; //ApvPair position in module int getFedCh() { int res = (int)(idex / 1000); return idex - res * 1000; } int getFedId() { int res = (int)(idex / 1000); return res; } };