ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/lucieg/myTemplateAnalysis/interface/myTemplateHistograms.h
Revision: 1.1
Committed: Thu May 27 11:37:54 2010 UTC (14 years, 11 months ago) by lucieg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 lucieg 1.1
2     #ifndef myTemplateHistograms_h
3     #define myTemplateHistograms_h
4    
5     // Base class for histogram managing.
6     //
7     // Original Author: Artur Kalinowski
8     // Created: Wed Jul 22 12:56:54 CEST 2009
9     // $Id: myTemplateHistograms.h,v 1.1 2010/04/20 10:32:40 cbern Exp $
10     //
11     //
12     #include "PFAnalyses/CommonTools/interface/AnalysisHistograms.h"
13    
14     class myTemplateHistograms: public AnalysisHistograms {
15     public:
16    
17     myTemplateHistograms(TFileDirectory *myTemplateDir, const std::string & name="");
18    
19     virtual ~myTemplateHistograms();
20    
21     void fillHistograms(float et);
22    
23     private:
24    
25     virtual void defineHistograms();
26    
27    
28     };
29    
30     #endif