ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/lucieg/interface/LucieHistograms.h
Revision: 1.2
Committed: Wed May 26 16:52:24 2010 UTC (14 years, 11 months ago) by lucieg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
State: FILE REMOVED
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 lucieg 1.1
2     #ifndef LucieHistograms_h
3     #define LucieHistograms_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 lucieg 1.2 // $Id: LucieHistograms.h,v 1.1 2010/05/25 17:29:55 lucieg Exp $
10 lucieg 1.1 //
11     //
12     #include "PFAnalyses/CommonTools/interface/AnalysisHistograms.h"
13    
14     class LucieHistograms: public AnalysisHistograms {
15     public:
16    
17     LucieHistograms(TFileDirectory *myDir, const std::string & name="");
18    
19     virtual ~LucieHistograms();
20    
21     void fillHistograms(float et);
22    
23     private:
24    
25     virtual void defineHistograms();
26    
27    
28     };
29    
30     #endif