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
|