ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/interface/HistosMET.hh
Revision: 1.4
Committed: Wed Jun 9 14:34:16 2010 UTC (14 years, 10 months ago) by amagnan
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
clean up histogram code, moved to analysis in UserCode/amagnan

File Contents

# Content
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