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
Log Message:
clean up histogram code, moved to analysis in UserCode/amagnan

File Contents

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