Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef L1Trigger_DemonstratorTools_LinkId_h
0002 #define L1Trigger_DemonstratorTools_LinkId_h
0003 
0004 #include <cstddef>
0005 #include <string>
0006 
0007 namespace l1t::demo {
0008 
0009   //! Logical ID for link within any given time slice (e.g. ["tracks", 0] -> ["tracks", 17] for links from TF)
0010   struct LinkId {
0011     std::string interface;
0012     size_t channel{0};
0013   };
0014 
0015   bool operator<(const LinkId&, const LinkId&);
0016 
0017 }  // namespace l1t::demo
0018 
0019 #endif