ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/MuonAnalyzer.h
Revision: 1.8
Committed: Wed Jun 10 11:17:05 2009 UTC (15 years, 10 months ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: all_2_2_9_03, all_2_2_9_02, all_2_2_9_01
Branch point for: CMSSW_2_2_X_br
Changes since 1.7: +9 -10 lines
Log Message:
Better protection against missing collection / Cleaning data format selection / Last iteration for migration to PAT of Photons

File Contents

# Content
1 #ifndef MuonAnalyzer_h
2 #define MuonAnalyzer_h
3
4 #include "DataFormats/MuonReco/interface/Muon.h"
5 #include "DataFormats/MuonReco/interface/MuonFwd.h"
6 #include "DataFormats/PatCandidates/interface/Muon.h"
7 #include "DataFormats/Math/interface/Point3D.h"
8
9 #include "../interface/LeptonAnalyzer.h"
10 #include "../interface/TRootMuon.h"
11
12 #include "TClonesArray.h"
13
14
15 class MuonAnalyzer : public LeptonAnalyzer
16 {
17
18 public:
19 MuonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
20 ~MuonAnalyzer();
21 bool process(const edm::Event& iEvent, TRootBeamSpot* rootBeamSpot, TClonesArray* rootMuons);
22
23 private:
24 bool useMC_;
25 edm::InputTag muonProducer_;
26
27 };
28
29 #endif