/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibTracker/SiPixelConnectivity/interface/PixelEndcapLinkMaker.h
64 строки
2 KB
David
move away from boost::uint and boost::int
24 сен 2019, 12:09
24 сен 2019, 12:09
f67c449
Код
Авторство
О чём код?
#ifndef PixelEndcapLinkMaker_H #define PixelEndcapLinkMaker_H #include <vector> #include "CalibTracker/SiPixelConnectivity/interface/TRange.h" class PixelModuleName; class PixelEndcapName; #include "CondFormats/SiPixelObjects/interface/PixelFEDCabling.h" #include "CondFormats/SiPixelObjects/interface/PixelFEDLink.h" #include <cstdint> class PixelEndcapLinkMaker { public: typedef sipixelobjects::PixelFEDCabling PixelFEDCabling; typedef sipixelobjects::PixelFEDLink PixelFEDLink; typedef sipixelobjects::PixelROC PixelROC; typedef std::vector<PixelModuleName*> Names; typedef std::vector<uint32_t> DetUnits; typedef PixelFEDCabling::Links Links; typedef TRange<int> Range; /// ctor from owner PixelEndcapLinkMaker(const PixelFEDCabling* o) : theOwner(o) {} /// construct links /// Each Endcap module triggers one or two link Items. /// They are sorted according to Order(). /// The ROCs corresponding to items are created. The link is /// form from link items and ROCS. Links links(const Names& n, const DetUnits& u) const; private: const PixelFEDCabling* theOwner; /// link item. /// defined by DetUnit with name (representing Pixel Detector module) /// and Ids of associated ROCs. The Id is the ROC number in module according /// to PixelDatabase. /// The Item represents one module (DetUnit+name) with the Plaquette type /// and associated ROCs Ids given explicitly (Id is the ROC number in module) struct Item { const PixelEndcapName* name; uint32_t unit; Range rocIds; }; /// define order of link components. /// Highest priority to Endcap id (forward or backward endcpa) /// Second priority to disk id. /// Next blade /// Next panned /// To compare order of modules in one pannel plaquette id is used. /// The order of plaquettes define order of ROCs in link struct Order { bool operator()(const Item&, const Item&) const; }; private: }; #endif