]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDpid.h
Simplify syntax
[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 //-------------------------------------------------------
7 //                    Combined PID class
8 //
9 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
10 //-------------------------------------------------------
11 #include <Rtypes.h>
12
13 class AliESD;
14
15 class AliESDpid {
16 public:
17   AliESDpid(){}
18   static Int_t MakePID(AliESD *event);
19 private:
20   ClassDef(AliESDpid,1)   // TPC PID class
21 };
22
23 #endif
24
25