00001 #ifndef MuonReco_MuonIsolation_h 00002 #define MuonReco_MuonIsolation_h 00003 00004 00005 namespace reco { 00006 struct MuonIsolation { 00007 float sumPt; 00008 float emEt; 00009 float hadEt; 00010 float hoEt; 00011 int nTracks; 00012 int nJets; 00013 float trackerVetoPt; 00014 float emVetoEt; 00015 float hadVetoEt; 00016 float hoVetoEt; 00017 MuonIsolation(): 00018 sumPt(0),emEt(0),hadEt(0),hoEt(0),nTracks(0),nJets(0), 00019 trackerVetoPt(0), emVetoEt(0), hadVetoEt(0), hoVetoEt(0){}; 00020 }; 00021 } 00022 #endif