/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/GEMObjects/interface/GEMeMap.h
74 строки
2 KB
Jason Lee
updated GEMPackingTester
16 июл 2021, 00:49
16 июл 2021, 00:49
5c7b155
Код
Авторство
О чём код?
#ifndef CondFormats_GEMObjects_GEMeMap_h #define CondFormats_GEMObjects_GEMeMap_h #include "CondFormats/Serialization/interface/Serializable.h" #include <string> #include <vector> class GEMROMapping; class GEMeMap { public: GEMeMap(); explicit GEMeMap(const std::string& version); virtual ~GEMeMap(); const std::string& version() const; void convert(GEMROMapping& romap); void convertDummy(GEMROMapping& romap); struct GEMChamberMap { std::vector<unsigned int> fedId; std::vector<uint8_t> amcNum; std::vector<uint8_t> gebId; std::vector<int> gemNum; std::vector<int> vfatVer; COND_SERIALIZABLE; }; struct GEMVFatMap { std::vector<int> gemNum; std::vector<uint16_t> vfatAdd; std::vector<int> vfatType; std::vector<int> iEta; std::vector<int> localPhi; COND_SERIALIZABLE; }; struct GEMStripMap { std::vector<int> vfatType; std::vector<int> vfatCh; std::vector<int> vfatStrip; COND_SERIALIZABLE; }; std::vector<GEMChamberMap> theChamberMap_; std::vector<GEMVFatMap> theVFatMap_; std::vector<GEMStripMap> theStripMap_; private: std::string theVersion; COND_SERIALIZABLE; public: // size of ID bits static const int vfatVerV3_ = 3; // VFAT v3 static const int vfatTypeV3_ = 11; // VFAT v3 static const int chipIdMask_ = 0xfff; // chipId mask for 12 bits static const int maxGEBs_ = 24; // 5 bits for GEB id static const int maxGEB1_ = 12; // 5 bits for GEB id static const int maxGEB2_ = 12; // 5 bits for GEB id static const int maxAMCs_ = 15; // 4 bits for AMC no. static const int maxVFatGE0_ = 12; // vFat per eta partition, not known yet for ME0 static const int maxVFatGE11_ = 3; // vFat per eta partition in GE11 static const int maxVFatGE21_ = 6; // vFat per eta partition in GE21 static const int maxiEtaIdGE0_ = 8; // no. eta partitions for GE0 static const int maxiEtaIdGE11_ = 8; // no. eta partitions for GE11 static const int maxiEtaIdGE21_ = 16; // no. eta partitions for GE21 static const int maxChan_ = 128; // channels per vFat }; #endif // GEMeMap_H