/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/DemonstratorTools/src/LinkId.cc
10 строк
268 B
Andrea Bocci
Add missing newline at the end of file
27 фев 2024, 16:21
Не верифицирован
27 фев 2024, 16:21
a77516d
Код
Авторство
О чём код?
#include "L1Trigger/DemonstratorTools/interface/LinkId.h" namespace l1t::demo { bool operator<(const LinkId& x, const LinkId& y) { int c = x.interface.compare(y.interface); return c == 0 ? (x.channel < y.channel) : (c < 0); } } // namespace l1t::demo