]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGPP/pid/AliPIDperfCut.h
RelVal: return exitcode of Makeflow to the caller
[u/mrichter/AliRoot.git] / PWGPP / pid / AliPIDperfCut.h
1 #ifndef ALIPIDPERFCUT_H
2 #define ALIPIDPERFCUT_H
3
4
5 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6  * See cxx source for full Copyright notice                               */
7
8 /* $Id: AliPIDperfCut.h 49869 2013-07-10 04:49:51Z fnoferin $ */
9
10 /////////////////////////////////////////////////
11 //                                             //
12 //         PID cut for performanve             //
13 //           noferini@bo.infn.it               //
14 /////////////////////////////////////////////////
15
16 #include"AliVTrack.h"
17 #include"AliPID.h"
18 #include"TNamed.h"
19
20 class AliPIDperfCut : public TNamed
21 {
22  public:
23   AliPIDperfCut(const char *name);
24   AliPIDperfCut();
25
26   virtual Bool_t IsSelected(AliVTrack *track,AliPID::EParticleType type) const;
27
28  private:
29
30   ClassDef(AliPIDperfCut,1)  // PID cut virtual class
31 };
32 #endif