CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/DataFormats/MuonReco/interface/MuonShower.h

Go to the documentation of this file.
00001 #ifndef MuonReco_MuonShower_h
00002 #define MuonReco_MuonShower_h
00003 
00004 namespace reco {
00005     struct MuonShower {
00006 
00008       std::vector<int> nStationHits;
00010       std::vector<int> nStationCorrelatedHits;
00012       std::vector<float> stationShowerSizeT;
00014       std::vector<float> stationShowerDeltaR;
00015 
00016       MuonShower():
00017         nStationHits(0),nStationCorrelatedHits(0),
00018         stationShowerSizeT(0),stationShowerDeltaR(0)
00019       { }       
00020     };
00021 }
00022 #endif