Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef MuonReco_MuonShower_h
0002 #define MuonReco_MuonShower_h
0003 
0004 #include <vector>
0005 
0006 namespace reco {
0007   struct MuonShower {
0008     /// number of all the muon RecHits per chamber crossed by a track (1D hits)
0009     std::vector<int> nStationHits;
0010     /// number of the muon RecHits used by segments per chamber crossed by a track
0011     std::vector<int> nStationCorrelatedHits;
0012     /// the transverse size of the hit cluster
0013     std::vector<float> stationShowerSizeT;
0014     /// the radius of the cone containing the all the hits around the track
0015     std::vector<float> stationShowerDeltaR;
0016 
0017     MuonShower() : nStationHits(0), nStationCorrelatedHits(0), stationShowerSizeT(0), stationShowerDeltaR(0) {}
0018   };
0019 }  // namespace reco
0020 #endif