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

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