1 |
#ifndef HbbAnalysis_HistosMET_hh
|
2 |
#define HbbAnalysis_HistosMET_hh
|
3 |
|
4 |
|
5 |
#include <vector>
|
6 |
#include <string>
|
7 |
|
8 |
#include "DataFormats/PatCandidates/interface/MET.h"
|
9 |
|
10 |
#include "UserCode/HbbAnalysis/interface/HistosMETBase.hh"
|
11 |
|
12 |
#include "TH1F.h"
|
13 |
#include "TH2F.h"
|
14 |
|
15 |
namespace HbbAnalysis {//namespace
|
16 |
|
17 |
|
18 |
class HistosMET: public HistosMETBase {
|
19 |
|
20 |
public:
|
21 |
|
22 |
void FillEventHistograms(const edm::Handle<std::vector<pat::MET> > & aCol);
|
23 |
|
24 |
};
|
25 |
|
26 |
}//namespace
|
27 |
|
28 |
|
29 |
|
30 |
#endif
|