ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/interface/HistosElecs.hh
Revision: 1.1.1.1 (vendor branch)
Committed: Wed Apr 15 10:24:16 2009 UTC (16 years, 1 month ago) by amagnan
Content type: text/plain
Branch: v00-00-00
CVS Tags: HbbAnaFor22X
Changes since 1.1: +0 -0 lines
Log Message:
Imported sources

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