]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliESDpid.h
Removal of AliAODTowers (will appear as AliAODCaloCells again).
[u/mrichter/AliRoot.git] / STEER / AliESDpid.h
index 72071e4dd647c001e710291dd8fc6a7427c170c5..375bb24051bcb6ffcfef2ae226ca238d99b6b195 100644 (file)
@@ -3,21 +3,24 @@
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+/* $Id$ */
+
 //-------------------------------------------------------
 //                    Combined PID class
-//
+//           for the Event Summary Data class
 //   Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
 //-------------------------------------------------------
 #include <Rtypes.h>
 
-class AliESD;
+class AliESDEvent;
 
 class AliESDpid {
 public:
   AliESDpid(){}
-  static Int_t MakePID(AliESD *event);
+  virtual ~AliESDpid() {}
+  static Int_t MakePID(AliESDEvent *event);
 private:
-  ClassDef(AliESDpid,1)   // TPC PID class
+  ClassDef(AliESDpid,2)   // TPC PID class
 };
 
 #endif