]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliEventCut.h
few changes by Thomas Kuhr
[u/mrichter/AliRoot.git] / ANALYSIS / AliEventCut.h
CommitLineData
b26900d0 1#ifndef ALIEVENTCUT_H
2#define ALIEVENTCUT_H
3//________________________________
4///////////////////////////////////////////////////////////
5//
6// class AliRunAnalysis
7//
8//
9//
10//
11///////////////////////////////////////////////////////////
12
13#include "TObject.h"
14
15class AliESD;
16class TObjArray;
17
18class AliEventCut: public TObject
19{
20 public:
21 AliEventCut();
22 virtual ~AliEventCut();
23
24 virtual Bool_t Pass(AliESD* esd) const;//returns kTRUE if rejected
25
26 protected:
27 TObjArray* fBaseCuts;
28 private:
29 ClassDef(AliEventCut,1)
30};
31
32#endif