ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/rootEWKanalyzer/include/analysisClass.h
Revision: 1.2
Committed: Tue Jul 20 15:32:44 2010 UTC (14 years, 9 months ago) by jueugste
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -0 lines
Log Message:
many changes...

File Contents

# User Rev Content
1 jueugste 1.1 #ifndef analysisClass_h
2     #define analysisClass_h
3    
4     #include "baseClass.h"
5     #include <iostream>
6     #include <string>
7     #include <fstream>
8     #include <stdio.h>
9     #include <iomanip>
10    
11    
12     using namespace std;
13    
14     class analysisClass : public baseClass {
15     public :
16     analysisClass(string * inputList, string * cutFile, string * treeName, string *outputFileName=0, string * cutEfficFile=0);
17     virtual ~analysisClass();
18     void Loop();
19 jueugste 1.2 /* // this function should be used to fill the histograms */
20     /* virtual void fillIt(int, int); */
21 jueugste 1.1 };
22    
23     #endif
24    
25     #ifdef analysisClass_cxx
26    
27     #endif // #ifdef analysisClass_cxx
28    
29