ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/MuonAnalyzer.h
Revision: 1.9
Committed: Fri Sep 18 14:14:20 2009 UTC (15 years, 7 months ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: all_3_3_2_01, all_3_2_5_02, all_3_2_5_01, HEAD
Changes since 1.8: +1 -0 lines
Log Message:
Update for 3.2.X

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/MuonReco/interface/MuonSelectors.h"
7 #include "DataFormats/PatCandidates/interface/Muon.h"
8 #include "DataFormats/Math/interface/Point3D.h"
9
10 #include "../interface/LeptonAnalyzer.h"
11 #include "../interface/TRootMuon.h"
12
13 #include "TClonesArray.h"
14
15
16 class MuonAnalyzer : public LeptonAnalyzer
17 {
18
19 public:
20 MuonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
21 ~MuonAnalyzer();
22 bool process(const edm::Event& iEvent, TRootBeamSpot* rootBeamSpot, TClonesArray* rootMuons);
23
24 private:
25 bool useMC_;
26 edm::InputTag muonProducer_;
27
28 };
29
30 #endif