1 |
amagnan |
1.1 |
#ifndef HbbAnalysis_HistosElecs_hh
|
2 |
|
|
#define HbbAnalysis_HistosElecs_hh
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
#include <vector>
|
6 |
|
|
#include <string>
|
7 |
|
|
|
8 |
|
|
#include "DataFormats/PatCandidates/interface/Muon.h"
|
9 |
|
|
|
10 |
|
|
#include "UserCode/HbbAnalysis/interface/HistosBase.hh"
|
11 |
|
|
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
#include "TH1F.h"
|
15 |
|
|
#include "TH2F.h"
|
16 |
|
|
|
17 |
|
|
|
18 |
|
|
namespace HbbAnalysis {//namespace
|
19 |
|
|
|
20 |
|
|
|
21 |
|
|
class HistosElecs: public HistosBase {
|
22 |
|
|
|
23 |
|
|
public:
|
24 |
|
|
|
25 |
|
|
HistosElecs(){};
|
26 |
|
|
~HistosElecs(){};
|
27 |
|
|
|
28 |
|
|
void Initialise(TFileDirectory & aDir, std::string aName);
|
29 |
|
|
|
30 |
|
|
void FillHistograms(const pat::Muon & aMuon);
|
31 |
|
|
|
32 |
|
|
private:
|
33 |
|
|
|
34 |
|
|
TH1F *p_nChambers;
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
};
|
38 |
|
|
|
39 |
|
|
}//namespace
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
#endif
|