Revision: | 1.1 |
Committed: | Mon Jun 7 14:57:39 2010 UTC (14 years, 10 months ago) by jueugste |
Content type: | text/plain |
Branch: | MAIN |
Log Message: | first commit |
# | 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 | }; | ||
20 | |||
21 | #endif | ||
22 | |||
23 | #ifdef analysisClass_cxx | ||
24 | |||
25 | #endif // #ifdef analysisClass_cxx | ||
26 | |||
27 |