]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDpid.h
bugfix: corrected defines to use right default algorithms
[u/mrichter/AliRoot.git] / STEER / AliESDpid.h
1 #ifndef ALIESDPID_H
2 #define ALIESDPID_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //-------------------------------------------------------
9 //                    Combined PID class
10 //           for the Event Summary Data class
11 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
12 //-------------------------------------------------------
13 #include <Rtypes.h>
14
15 class AliESDEvent;
16
17 class AliESDpid {
18 public:
19   AliESDpid(){}
20   virtual ~AliESDpid() {}
21   static Int_t MakePID(AliESDEvent *event);
22 private:
23   ClassDef(AliESDpid,2)   // TPC PID class
24 };
25
26 #endif
27
28