MuonRPCHitMatch

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef MuonReco_MuonRPCHitMatch_h
#define MuonReco_MuonRPCHitMatch_h

#include <cmath>

namespace reco {
  class MuonRPCHitMatch {
  public:
    float x;            // X position of the matched segment
    unsigned int mask;  // arbitration mask
    int bx;             // bunch crossing

    MuonRPCHitMatch() : x(0), mask(0), bx(0) {}
  };
}  // namespace reco

#endif