ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/interface/HistosMET.hh
Revision: 1.3
Committed: Fri Oct 2 11:05:52 2009 UTC (15 years, 7 months ago) by amagnan
Content type: text/plain
Branch: MAIN
CVS Tags: v00-05-00, HbbAnaFor35X, v00-04-02, v00-04-01, v00-04-00
Changes since 1.2: +3 -34 lines
Log Message:
add histos classes to fill from tree

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