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 |
|
|
|