CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 {
9  std::vector<int> nStationHits;
11  std::vector<int> nStationCorrelatedHits;
13  std::vector<float> stationShowerSizeT;
15  std::vector<float> stationShowerDeltaR;
16 
18  };
19 } // namespace reco
20 #endif
std::vector< int > nStationHits
number of all the muon RecHits per chamber crossed by a track (1D hits)
Definition: MuonShower.h:9
std::vector< int > nStationCorrelatedHits
number of the muon RecHits used by segments per chamber crossed by a track
Definition: MuonShower.h:11
std::vector< float > stationShowerSizeT
the transverse size of the hit cluster
Definition: MuonShower.h:13
std::vector< float > stationShowerDeltaR
the radius of the cone containing the all the hits around the track
Definition: MuonShower.h:15