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