/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/RPCObjects/src/ChamberLocationSpec.cc
38 строк
2 KB
Cms Build
Clang-Format
24 май 2019, 00:14
24 май 2019, 00:14
ecf11e6
Код
Авторство
О чём код?
#include "CondFormats/RPCObjects/interface/ChamberLocationSpec.h" #include <sstream> std::string ChamberLocationSpec::print(int depth) const { std::ostringstream str; std::string subsVal[5] = {"--", "-", "0", "+", "++"}; // -2,-1,0,1,2 std::string febZVal[3] = {"-z", "+z"}; // 0,1 std::string febZRVal[3] = {"N/A", "IN", "OUT"}; // 0,1,2 std::string boeVal[2] = {"Endcap", "Barrel"}; // 0,1 if (depth >= 0) { str << " ChamberLocationSpec: " << std::endl << " --->DiskOrWheel: " << diskOrWheel << " Layer: " << layer << " Sector: " << sector << " Subsector: " << subsVal[subsector + 2] << " ChamberLocationName: " << chamberLocationName() << " FebZOrnt: " << febZVal[int(febZOrnt)] << " FebZRadOrnt: " << febZRVal[int(febZRadOrnt)] << " BarrelOrEndcap: " << boeVal[int(barrelOrEndcap)]; } return str.str(); } std::string ChamberLocationSpec::chamberLocationName() const { std::ostringstream ocln; std::string cln; if (barrelOrEndcap == 1) { std::string layerVal[6] = {"RB1in", "RB1out", "RB2in", "RB2out", "RB3", "RB4"}; std::string prefix = "W"; if (diskOrWheel > 0) prefix = "W+"; std::string subsVal[5] = {"--", "-", "", "+", "++"}; ocln << prefix << diskOrWheel << "/" << layerVal[layer - 1] << "/" << sector << subsVal[subsector + 2]; } else { std::string prefix = "RE"; if (diskOrWheel > 0) prefix = "RE+"; ocln << prefix << diskOrWheel << "/" << layer << "/" << sector; } cln = ocln.str(); return cln; }