MuonGEMHitMatch

Macros

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

#include <cmath>

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

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

#endif