]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/Alieve/EventAlieve.h
Merged EVE-dev-after-merge to EVE-dev into HEAD. Requires ROOT-5.17.04.
[u/mrichter/AliRoot.git] / EVE / Alieve / EventAlieve.h
index 5b79a46265e0f75fae6245a7bdf30ae43a2b7a0f..cb1d1959874c72d8ab34e6fc7344fe207a0e3b0b 100644 (file)
@@ -3,8 +3,6 @@
 #ifndef ALIEVE_Event_H
 #define ALIEVE_Event_H
 
-#include <TList.h>
-
 #include <Reve/EventBase.h>
 
 class AliRunLoader;
@@ -33,12 +31,10 @@ protected:
 
   TFile*        fESDFile;
   TTree*        fESDTree;
-  AliESDEvent*       fESD;
+  AliESDEvent*  fESD;
   AliESDfriend* fESDfriend;
   Bool_t        fESDfriendExists;
 
-  TList         fNewEventCommands;
-
   static TString  fgCdbUri;
   static Bool_t   fgAssertRunLoader;
   static Bool_t   fgAssertESDTree;
@@ -53,27 +49,22 @@ public:
   Event();
   Event(TString path, Int_t ev=0);
 
-  void Open();
-  void GotoEvent(Int_t event);
-  void NextEvent() { GotoEvent(fEventId + 1); }
-  void PrevEvent() { GotoEvent(fEventId - 1); }
-  void Close();
-
-  virtual void  AfterNewEventLoaded();
-
-  TList& GetNewEventCommands() { return fNewEventCommands; }
-  void   AddNewEventCommand(const Text_t* cmd);
+  virtual void Open();
+  virtual void GotoEvent(Int_t event);
+  virtual void NextEvent() { GotoEvent(fEventId + 1); }
+  virtual void PrevEvent() { GotoEvent(fEventId - 1); }
+  virtual void Close();
 
   Int_t         GetEventId()   const { return fEventId; }
   AliRunLoader* GetRunLoader() const { return fRunLoader; }
   TTree*        GetESDTree()   const { return fESDTree; }
-  AliESDEvent*       GetESD()       const { return fESD; }
+  AliESDEvent*  GetESD()       const { return fESD; }
   AliESDfriend* GetESDfriend()       const { return fESDfriend; }
   Bool_t        GetESDfriendExists() const { return fESDfriendExists; }
   virtual const Text_t* GetTitle()   const { return fPath.Data(); }
 
   static AliRunLoader* AssertRunLoader();
-  static AliESDEvent*       AssertESD();
+  static AliESDEvent*  AssertESD();
   static AliESDfriend* AssertESDfriend();
 
   static AliMagF*      AssertMagField();