]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Reader inherits now from TNamed -> Can be written to file
authorskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Nov 2002 10:36:22 +0000 (10:36 +0000)
committerskowron <skowron@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 11 Nov 2002 10:36:22 +0000 (10:36 +0000)
HBTAN/AliHBTReader.h

index 8b1a73969d70211a6016c95499002d03ef2f6660..2a2e530c79899f96f598b00f01c67a144097e029 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef ALIHBTREADER_H
 #define ALIHBTREADER_H
 
-#include <TObject.h>
+#include <TNamed.h>
 
 //Reader Base class (reads particles and tracks and
 //puts it to the AliHBTRun objects
@@ -14,8 +14,7 @@ class TObjArray;
 class AliHBTParticle;
 class TString;
 
-class AliHBTReader: public TObject
-
+class AliHBTReader: public TNamed
 {
   public:
     AliHBTReader();
@@ -46,7 +45,8 @@ class AliHBTReader: public TObject
   private:
   
   public:
-    ClassDef(AliHBTReader,1)
+    ClassDef(AliHBTReader,2)//version 2 - TNamed as parental class
+    
 };
 
 #endif