ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/python/interface/HistosElecs.hh
Revision: 1.2
Committed: Wed Apr 15 11:57:04 2009 UTC (16 years ago) by amagnan
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
oups...

File Contents

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