ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/lucieg/interface/myTemplateHistograms.h
Revision: 1.2
Committed: Thu May 27 11:26:34 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
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
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/05/26 20:11:50 lucieg 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