]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ANALYSIS/AliBaseEventCut.cxx
8e744ebb81969e10f2848a5574bd274548522355
[u/mrichter/AliRoot.git] / ANALYSIS / AliBaseEventCut.cxx
1 #include "AliBaseEventCut.h"
2 //________________________________
3 ///////////////////////////////////////////////////////////
4 //
5 // class AliBaseEventCut
6 //
7 //
8 //
9 //
10 ///////////////////////////////////////////////////////////
11
12 #include <AliESDtrack.h>
13 #include <AliESD.h>
14 ClassImp(AliBaseEventCut)
15
16 AliBaseEventCut::AliBaseEventCut():
17  fMin(0.0),
18  fMax(0.0),
19 {
20   
21 }
22 /**********************************************************/
23
24 Bool_t AliBaseEventCut::Pass(AliESD* esd) const
25 {
26   if ( (GetValue() < fMin) || (GetValue() > fMax) ) return kTRUE;
27   return kFALSE;
28 {
29 /**********************************************************/