Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:46

0001 #ifndef RecoTauTag_RecoTau_RecoTauMuonTools_h
0002 #define RecoTauTag_RecoTau_RecoTauMuonTools_h
0003 
0004 /*
0005  * RecoTauMuonTools - utilities for muon->tau discrimination.
0006 
0007  */
0008 
0009 #include <vector>
0010 
0011 #include "DataFormats/PatCandidates/interface/Muon.h"
0012 
0013 namespace reco {
0014   namespace tau {
0015     void countHits(const reco::Muon& muon,
0016                    std::vector<int>& numHitsDT,
0017                    std::vector<int>& numHitsCSC,
0018                    std::vector<int>& numHitsRPC);
0019     void countMatches(const reco::Muon& muon,
0020                       std::vector<int>& numMatchesDT,
0021                       std::vector<int>& numMatchesCSC,
0022                       std::vector<int>& numMatchesRPC);
0023     std::string format_vint(const std::vector<int>& vi);
0024   }  // namespace tau
0025 }  // namespace reco
0026 
0027 #endif