CMS 3D CMS Logo

MuonShower.h
Go to the documentation of this file.
1 #ifndef MuonReco_MuonShower_h
2 #define MuonReco_MuonShower_h
3 
4 #include <vector>
5 
6 namespace reco {
7  struct MuonShower {
8 
10  std::vector<int> nStationHits;
12  std::vector<int> nStationCorrelatedHits;
14  std::vector<float> stationShowerSizeT;
16  std::vector<float> stationShowerDeltaR;
17 
19  nStationHits(0),nStationCorrelatedHits(0),
20  stationShowerSizeT(0),stationShowerDeltaR(0)
21  { }
22  };
23 }
24 #endif
std::vector< int > nStationHits
number of all the muon RecHits per chamber crossed by a track (1D hits)
Definition: MuonShower.h:10
std::vector< int > nStationCorrelatedHits
number of the muon RecHits used by segments per chamber crossed by a track
Definition: MuonShower.h:12
fixed size matrix
std::vector< float > stationShowerSizeT
the transverse size of the hit cluster
Definition: MuonShower.h:14
std::vector< float > stationShowerDeltaR
the radius of the cone containing the all the hits around the track
Definition: MuonShower.h:16