ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Morgan/interface/MuonAnalyzer.h
Revision: 1.5
Committed: Fri Apr 17 15:17:38 2009 UTC (16 years ago) by lethuill
Content type: text/plain
Branch: MAIN
Changes since 1.4: +7 -16 lines
Log Message:
Add significance of the 3D impact parameter for leptons.
Calculation done in new LeptonAnalyzer class (Base for MuonAnalyzer and ElectronAnalyzer)

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
8 #include "../interface/LeptonAnalyzer.h"
9 #include "../interface/TRootMuon.h"
10
11 #include "TClonesArray.h"
12
13
14 class MuonAnalyzer : public LeptonAnalyzer
15 {
16
17 public:
18 MuonAnalyzer(const edm::ParameterSet& producersNames);
19 MuonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
20 ~MuonAnalyzer();
21 //void SetVerbosity(int verbosity) {verbosity_ = verbosity; };
22 void Process(const edm::Event& iEvent, TClonesArray* rootMuons);
23
24 private:
25 //int verbosity_;
26 //std::string dataType_ ;
27 edm::InputTag muonProducer_;
28 bool useMC_;
29 bool doPrimaryVertex_;
30 };
31
32 #endif