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
|