/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/SiPixelDetId/interface/PixelFEDChannel.h
18 строк
472 B
Cms Build
Clang-Format
09 май 2019, 07:14
09 май 2019, 07:14
57cea53
Код
Авторство
О чём код?
#ifndef SiPixelDetId_PixelFEDChannel_H #define SiPixelDetId_PixelFEDChannel_H #include "DataFormats/Common/interface/DetSetVectorNew.h" struct PixelFEDChannel { unsigned int fed, link, roc_first, roc_last; }; inline bool operator<(const PixelFEDChannel& one, const PixelFEDChannel& other) { if (one.fed == other.fed) return one.link < other.link; return one.fed < other.fed; } typedef edmNew::DetSetVector<PixelFEDChannel> PixelFEDChannelCollection; #endif