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.9 |
#include "DataFormats/MuonReco/interface/MuonSelectors.h"
|
7 |
lethuill |
1.2 |
#include "DataFormats/PatCandidates/interface/Muon.h"
|
8 |
lethuill |
1.6 |
#include "DataFormats/Math/interface/Point3D.h"
|
9 |
lethuill |
1.1 |
|
10 |
lethuill |
1.5 |
#include "../interface/LeptonAnalyzer.h"
|
11 |
lethuill |
1.2 |
#include "../interface/TRootMuon.h"
|
12 |
lethuill |
1.1 |
|
13 |
|
|
#include "TClonesArray.h"
|
14 |
|
|
|
15 |
|
|
|
16 |
lethuill |
1.5 |
class MuonAnalyzer : public LeptonAnalyzer
|
17 |
|
|
{
|
18 |
lethuill |
1.1 |
|
19 |
lethuill |
1.8 |
public:
|
20 |
|
|
MuonAnalyzer(const edm::ParameterSet& producersNames, const edm::ParameterSet& myConfig, int verbosity);
|
21 |
|
|
~MuonAnalyzer();
|
22 |
|
|
bool process(const edm::Event& iEvent, TRootBeamSpot* rootBeamSpot, TClonesArray* rootMuons);
|
23 |
|
|
|
24 |
|
|
private:
|
25 |
|
|
bool useMC_;
|
26 |
|
|
edm::InputTag muonProducer_;
|
27 |
|
|
|
28 |
lethuill |
1.1 |
};
|
29 |
|
|
|
30 |
|
|
#endif
|