Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:47

0001 #ifndef MuonReco_MuonRPCHitMatch_h
0002 #define MuonReco_MuonRPCHitMatch_h
0003 
0004 #include <cmath>
0005 
0006 namespace reco {
0007   class MuonRPCHitMatch {
0008   public:
0009     float x;            // X position of the matched segment

0010     unsigned int mask;  // arbitration mask

0011     int bx;             // bunch crossing

0012 
0013     MuonRPCHitMatch() : x(0), mask(0), bx(0) {}
0014   };
0015 }  // namespace reco

0016 
0017 #endif