ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/MuonAnalyzer.h
Revision: 1.7
Committed: Tue Apr 21 13:01:56 2009 UTC (16 years ago) by lethuill
Content type: text/plain
Branch: MAIN
CVS Tags: JeSuisBeaucoupPlusGrosQunReco_2_2_7_01, RecoPhoton_2_2_7_02
Changes since 1.6: +1 -6 lines
Log Message:
Use beam spot in 3D impact parameter calculation - Not checked...

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     public:
19     MuonAnalyzer(const edm::ParameterSet& producersNames);
20 lethuill 1.3 MuonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
21 lethuill 1.1 ~MuonAnalyzer();
22 lethuill 1.5 //void SetVerbosity(int verbosity) {verbosity_ = verbosity; };
23 lethuill 1.6 void Process(const edm::Event& iEvent, TRootBeamSpot* rootBeamSpot, TClonesArray* rootMuons);
24 lethuill 1.1
25     private:
26 lethuill 1.3 bool useMC_;
27 lethuill 1.7 edm::InputTag muonProducer_;
28 lethuill 1.1 };
29    
30     #endif