From 9e12cd8cba1fba798bc0bc9f39b14702710fa0b0 Mon Sep 17 00:00:00 2001 From: hristov Date: Thu, 11 Apr 2002 22:20:49 +0000 Subject: [PATCH] Inheritance from TObject. Automatic streamers. --- STEER/AliESD.h | 7 ++++--- STEER/STEERLinkDef.h | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/STEER/AliESD.h b/STEER/AliESD.h index e722c6ef6eb..d0fbae66e4b 100644 --- a/STEER/AliESD.h +++ b/STEER/AliESD.h @@ -11,12 +11,13 @@ // // /////////////////////////////////////////////////////////////////////////////// +#include "TObject.h" #include "TObjArray.h" #include "TArrayI.h" #include "TArrayF.h" #include "TArrayD.h" -class AliESDTrack +class AliESDTrack : public TObject { public: AliESDTrack(); @@ -63,7 +64,7 @@ private: }; -class AliESDVertex +class AliESDVertex : public TObject { public: AliESDVertex(); @@ -83,7 +84,7 @@ private: ClassDef(AliESDVertex,1) //ESDVertex }; -class AliESD +class AliESD : public TObject { public: AliESD(); diff --git a/STEER/STEERLinkDef.h b/STEER/STEERLinkDef.h index ff4c2f454b7..b2aba80c4ee 100644 --- a/STEER/STEERLinkDef.h +++ b/STEER/STEERLinkDef.h @@ -57,6 +57,8 @@ #pragma link C++ class AliFieldMap-; #pragma link C++ class AliGausCorr+; #pragma link C++ class AliESD+; +#pragma link C++ class AliESDTrack+; +#pragma link C++ class AliESDVertex+; #endif -- 2.39.3