18 |
|
BestMuonFinder( const edm::ParameterSet& cfg); |
19 |
|
const reco::Muon* result( const edm::Event &ev, const edm::EventSetup &es) { run(ev,es); return theMuon; } |
20 |
|
bool isUnique( const edm::Event &ev, const edm::EventSetup &es) { run(ev,es); return theUnique;} |
21 |
+ |
unsigned int numberOfAllMuons( const edm::Event &ev, const edm::EventSetup &es) { run(ev,es); return theAllMuons; } |
22 |
|
void initHistos( TObjArray & histos); |
23 |
|
|
24 |
|
private: |
30 |
|
edm::ParameterSet theConfig; |
31 |
|
|
32 |
|
bool theUnique; |
33 |
+ |
unsigned int theAllMuons; |
34 |
|
const reco::Muon* theMuon; |
35 |
|
|
36 |
|
TH1D *hMuChi2Tk, *hMuChi2Gl, *hMuNHitsTk ; |
37 |
|
TH2D *hMuPtVsEta, *hMuHitsRPCvsCSC, *hMuHitsRPCvsDT; |
38 |
+ |
TH1D *hMuonPt_BMF, *hMuonEta_BMF, *hMuonPhi_BMF; |
39 |
+ |
|
40 |
|
|
41 |
|
}; |
42 |
|
#endif |