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

# User Rev Content
1 lethuill 1.1 #ifndef MuonAnalyzer_h
2     #define MuonAnalyzer_h
3    
4     #include "DataFormats/MuonReco/interface/Muon.h"
5     #include "DataFormats/MuonReco/interface/MuonFwd.h"
6 lethuill 1.2 #include "DataFormats/PatCandidates/interface/Muon.h"
7 lethuill 1.6 #include "DataFormats/Math/interface/Point3D.h"
8 lethuill 1.1
9 lethuill 1.5 #include "../interface/LeptonAnalyzer.h"
10 lethuill 1.2 #include "../interface/TRootMuon.h"
11 lethuill 1.1
12     #include "TClonesArray.h"
13    
14    
15 lethuill 1.5 class MuonAnalyzer : public LeptonAnalyzer
16     {
17 lethuill 1.1
18 lethuill 1.8 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 lethuill 1.1 };
28    
29     #endif