Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:45:33

0001 #ifndef EventFilter_L1TRawToDigi_Omtf_LinkMappingCsc_H
0002 #define EventFilter_L1TRawToDigi_Omtf_LinkMappingCsc_H
0003 
0004 #include <map>
0005 #include <cstdint>
0006 
0007 #include "EventFilter/L1TRawToDigi/interface/OmtfEleIndex.h"
0008 #include "DataFormats/MuonDetId/interface/CSCDetId.h"
0009 
0010 namespace omtf {
0011   typedef std::map<EleIndex, CSCDetId> MapEleIndex2CscDet;
0012   typedef std::map<uint32_t, std::pair<EleIndex, EleIndex> > MapCscDet2EleIndex;
0013 
0014   MapEleIndex2CscDet mapEleIndex2CscDet();
0015   MapCscDet2EleIndex mapCscDet2EleIndex();
0016 
0017 }  // namespace omtf
0018 #endif