Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:39

0001 
0002 #include "L1Trigger/DemonstratorTools/interface/LinkId.h"
0003 
0004 namespace l1t::demo {
0005 
0006   bool operator<(const LinkId& x, const LinkId& y) {
0007     int c = x.interface.compare(y.interface);
0008     return c == 0 ? (x.channel < y.channel) : (c < 0);
0009   }
0010 
0011 }  // namespace l1t::demo