]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveBase/AliEveEventManager.cxx
Coverity
[u/mrichter/AliRoot.git] / EVE / EveBase / AliEveEventManager.cxx
index fb04133b227bcafc2b434366c5f5dd7be5479d64..4d38ed381df0613f0747874c224596b3769e7ace 100644 (file)
@@ -8,28 +8,44 @@
  **************************************************************************/
 
 #include "AliEveEventManager.h"
+#include "AliEveEventSelector.h"
 #include "AliEveMacroExecutor.h"
+#include <TEveElement.h>
 #include <TEveManager.h>
+#include <TEveViewer.h>
 
 #include <AliRunLoader.h>
 #include <AliRun.h>
+#include <AliESDRun.h>
 #include <AliESDEvent.h>
 #include <AliESDfriend.h>
+#include <AliAODEvent.h>
+
 #include <AliDAQ.h>
 #include <AliRawEventHeaderBase.h>
 #include <AliRawReaderRoot.h>
 #include <AliRawReaderFile.h>
 #include <AliRawReaderDate.h>
-#include <AliMagFMaps.h>
+#include <AliMagF.h>
 #include <AliCDBManager.h>
+#include <AliCDBStorage.h>
+#include <AliGRPObject.h>
 #include <AliHeader.h>
 #include <AliGeomManager.h>
+#include <AliGRPManager.h>
+#include <AliSysInfo.h>
 
 #include <TFile.h>
 #include <TTree.h>
 #include <TGeoManager.h>
+#include <TGeoGlobalMagField.h>
 #include <TSystem.h>
 #include <TTimeStamp.h>
+#include <TPRegexp.h>
+#include <TError.h>
+#include <TEnv.h>
+#include <TString.h>
+#include <TMap.h>
 
 //==============================================================================
 //==============================================================================
 
 //______________________________________________________________________________
 //
-// Provide interface for loading and navigating standard AliRoot data
-// (AliRunLoader) and ESDs.
+// Provides interface for loading and navigating standard AliRoot data
+// (AliRunLoader), ESD, AOD and RAW.
+//
+// ESDfriend is attached automatically, if the file is found.
 //
-// Missing support for raw-data. For now this is handled individually
-// by each sub-detector.
+// AODfriends are not attached automatically as there are several
+// possible files involved. To have a specific AODfriend attached, call
+// static method
+//   AliEveEventManager::AddAODfriend("AliAOD.VertexingHF.root");
+// before initializing the event-manager.
 //
 // Also provides interface to magnetic-field and geometry. Mostly
 // intended as wrappers over standard AliRoot functionality for
 // convenient use from visualizateion macros.
+//
+// There can be a single main event-manger, it is stored in private
+// data member fgMaster and can be accessed via static member function
+// GetMaster().
+//
+// For event overlaying and embedding one can instantiate additional
+// event-managers via static method AddDependentManager(const TString& path).
+// This interface is under development.
 
 ClassImp(AliEveEventManager)
 
-AliEveEventManager* gAliEveEvent = 0;
-
 Bool_t AliEveEventManager::fgAssertRunLoader = kFALSE;
 Bool_t AliEveEventManager::fgAssertESD       = kFALSE;
+Bool_t AliEveEventManager::fgAssertAOD       = kFALSE;
 Bool_t AliEveEventManager::fgAssertRaw       = kFALSE;
 
 TString  AliEveEventManager::fgESDFileName("AliESDs.root");
+TString  AliEveEventManager::fgAODFileName("AliAOD.root");
 TString  AliEveEventManager::fgRawFileName("raw.root");
-TString  AliEveEventManager::fgCdbUri("local://$ALICE_ROOT");
+TString  AliEveEventManager::fgCdbUri;
 
-AliMagF* AliEveEventManager::fgMagField = 0;
+TList*   AliEveEventManager::fgAODfriends = 0;
+
+Bool_t   AliEveEventManager::fgRawFromStandardLoc = kFALSE;
+
+Bool_t   AliEveEventManager::fgGRPLoaded    = kFALSE;
+AliMagF* AliEveEventManager::fgMagField     = 0;
+Bool_t   AliEveEventManager::fgUniformField = kFALSE;
+
+AliEveEventManager* AliEveEventManager::fgMaster  = 0;
+AliEveEventManager* AliEveEventManager::fgCurrent = 0;
 
 void AliEveEventManager::InitInternals()
 {
   // Initialize internal members.
 
+  static const TEveException kEH("AliEveEventManager::InitInternals ");
+
+  if (fgCurrent != 0)
+  {
+    throw(kEH + "Dependent event-managers should be created via static method AddDependentManager().");
+  }
+
+  if (fgMaster == 0)
+  {
+    fgMaster = this;
+  }
+
+  fgCurrent = this;
+
   fAutoLoadTimer = new TTimer;
   fAutoLoadTimer->Connect("Timeout()", "AliEveEventManager", this, "AutoLoadNextEvent()");
 
   fExecutor = new AliEveMacroExecutor;
+
+  fTransients = new TEveElementList("Transients", "Transient per-event elements.");
+  fTransients->IncDenyDestroy();
+  gEve->AddToListTree(fTransients, kFALSE);
+
+  fTransientLists = new TEveElementList("Transient Lists", "Containers of transient elements.");
+  fTransientLists->IncDenyDestroy();
+  gEve->AddToListTree(fTransientLists, kFALSE);
+
+  fPEventSelector = new AliEveEventSelector(this);
+
+  fGlobal = new TMap; fGlobal->SetOwnerKeyValue();
 }
 
-AliEveEventManager::AliEveEventManager() :
-  TEveEventManager(),
+AliEveEventManager::AliEveEventManager(const TString& name) :
+  TEveEventManager(name),
 
   fPath      ( ), fEventId (-1),
   fRunLoader (0),
   fESDFile   (0), fESDTree (0), fESD (0),
   fESDfriend (0), fESDfriendExists(kFALSE),
+  fAODFile   (0), fAODTree (0), fAOD (0),
   fRawReader (0),
   fAutoLoad  (kFALSE), fAutoLoadTime (5.),     fAutoLoadTimer(0),
   fIsOpen    (kFALSE), fHasEvent     (kFALSE), fExternalCtrl (kFALSE),
-  fExecutor  (0),
+  fGlobal    (0), fGlobalReplace (kTRUE), fGlobalUpdate (kTRUE),
+  fExecutor    (0), fTransients(0), fTransientLists(0),
+  fPEventSelector(0),
+  fSubManagers (0),
   fAutoLoadTimerRunning(kFALSE)
 {
   // Default constructor.
@@ -90,17 +158,21 @@ AliEveEventManager::AliEveEventManager() :
   InitInternals();
 }
 
-AliEveEventManager::AliEveEventManager(TString path, Int_t ev) :
-  TEveEventManager("AliEVE AliEveEventManager"),
+AliEveEventManager::AliEveEventManager(const TString& name, const TString& path, Int_t ev) :
+  TEveEventManager(name, path),
 
   fPath   (path), fEventId(-1),
   fRunLoader (0),
   fESDFile   (0), fESDTree (0), fESD (0),
   fESDfriend (0), fESDfriendExists(kFALSE),
+  fAODFile   (0), fAODTree (0), fAOD (0),
   fRawReader (0),
   fAutoLoad  (kFALSE), fAutoLoadTime (5),      fAutoLoadTimer(0),
   fIsOpen    (kFALSE), fHasEvent     (kFALSE), fExternalCtrl (kFALSE),
-  fExecutor  (0),
+  fGlobal    (0), fGlobalReplace (kTRUE), fGlobalUpdate (kTRUE),
+  fExecutor    (0), fTransients(0), fTransientLists(0),
+  fPEventSelector(0),
+  fSubManagers (0),
   fAutoLoadTimerRunning(kFALSE)
 {
   // Constructor with event-directory URL and event-id.
@@ -118,50 +190,86 @@ AliEveEventManager::~AliEveEventManager()
 {
   // Destructor.
 
+  delete fSubManagers;
+
   if (fIsOpen)
   {
     Close();
   }
 
-  // Somewhat unclear what to do here.
-  // In principle should wipe event data and deregister from
-  // TEveManager.
+  fTransients->DecDenyDestroy();
+  fTransients->Destroy();
+
+  fTransientLists->DecDenyDestroy();
+  fTransientLists->Destroy();
 }
 
 /******************************************************************************/
 
-void AliEveEventManager::SetESDFileName(const Text_t* esd)
+void AliEveEventManager::SetESDFileName(const TString& esd)
 {
   // Set file-name for opening ESD, default "AliESDs.root".
 
-  if (esd) fgESDFileName = esd;
+  if ( ! esd.IsNull()) fgESDFileName = esd;
+}
+
+void AliEveEventManager::SetAODFileName(const TString& aod)
+{
+  // Set file-name for opening AOD, default "AliAOD.root".
+
+  if ( ! aod.IsNull()) fgAODFileName = aod;
+}
+
+void AliEveEventManager::AddAODfriend(const TString& friendFileName)
+{
+  // Add new AOD friend file-name to be attached when opening AOD.
+  // This should include '.root', as in 'AliAOD.VertexingHF.root'.
+
+  if (fgAODfriends == 0)
+  {
+    fgAODfriends = new TList;
+    fgAODfriends->SetOwner(kTRUE);
+  }
+  if (fgAODfriends->FindObject(friendFileName) == 0)
+  {
+    fgAODfriends->Add(new TObjString(friendFileName));
+  }
 }
 
-void AliEveEventManager::SetRawFileName(const Text_t* raw)
+void AliEveEventManager::SetRawFileName(const TString& raw)
 {
   // Set file-name for opening of raw-data, default "raw.root"
-  if (raw) fgRawFileName = raw;
+  if ( ! raw.IsNull()) fgRawFileName = raw;
 }
 
-void AliEveEventManager::SetCdbUri(const Text_t* cdb)
+void AliEveEventManager::SetCdbUri(const TString& cdb)
 {
-  // Set path to CDB, default "local://$ALICE_ROOT".
+  // Set path to CDB, there is no default.
 
-  if (cdb) fgCdbUri = cdb;
+  if ( ! cdb.IsNull()) fgCdbUri = cdb;
 }
 
-void AliEveEventManager::SetAssertElements(Bool_t assertRunloader,
-                                           Bool_t assertEsd,
-                                           Bool_t assertRaw)
+void AliEveEventManager::SetAssertElements(Bool_t assertRunloader, Bool_t assertEsd,
+                                          Bool_t assertAod, Bool_t assertRaw)
 {
   // Set global flags that detrmine which parts of the event-data must
   // be present when the event is opened.
 
   fgAssertRunLoader = assertRunloader;
   fgAssertESD = assertEsd;
+  fgAssertAOD = assertAod;
   fgAssertRaw = assertRaw;
 }
 
+void AliEveEventManager::SearchRawForCentralReconstruction()
+{
+  // Enable searching of raw data in standard location. The path passed to
+  // Open() is expected to point to a centrally reconstructed run, e.g.:
+  // "alien:///alice/data/2009/LHC09c/000101134/ESDs/pass1/09000101134018.10".
+
+  fgRawFromStandardLoc = kTRUE;
+}
+
 /******************************************************************************/
 
 void AliEveEventManager::Open()
@@ -184,7 +292,7 @@ void AliEveEventManager::Open()
   }
 
   gSystem->ExpandPathName(fPath);
-  // The following magick is required for ESDriends to be loaded properly
+  // The following magick is required for ESDfriends to be loaded properly
   // from non-current directory.
   if (fPath.IsNull() || fPath == ".")
   {
@@ -203,44 +311,53 @@ void AliEveEventManager::Open()
   // Open ESD and ESDfriends
 
   TString esdPath(Form("%s/%s", fPath.Data(), fgESDFileName.Data()));
+  if (fPath.EndsWith(".zip")) esdPath.Form("%s#%s",fPath.Data(),fgESDFileName.Data());
   if ((fESDFile = TFile::Open(esdPath)))
   {
     fESD = new AliESDEvent();
     fESDTree = (TTree*) fESDFile->Get("esdTree");
     if (fESDTree != 0)
     {
-      // Check if ESDfriends exists and attach the branch
+      // Check if ESDfriends exists and attach the branch.
+      // We use TFile::Open() instead of gSystem->AccessPathName
+      // as it seems to work better when attachine alieve to a
+      // running reconstruction process with auto-save on.
       TString p(Form("%s/AliESDfriends.root", fPath.Data()));
+      if (fPath.EndsWith(".zip")) p.Form("%s#AliESDfriends.root",fPath.Data());
       TFile *esdFriendFile = TFile::Open(p);
-      if (esdFriendFile) {
+      if (esdFriendFile)
+      {
        if (!esdFriendFile->IsZombie())
-         {
-           esdFriendFile->Close();
-           delete esdFriendFile;
-           fESDfriendExists = kTRUE;
-           fESDTree->SetBranchStatus ("ESDfriend*", 1);
-           fESDTree->SetBranchAddress("ESDfriend.", &fESDfriend);
-         }
-       else
-         {
-           esdFriendFile->Close();
-           delete esdFriendFile;
-         }
+       {
+         esdFriendFile->Close();
+         fESDfriendExists = kTRUE;
+         fESDTree->SetBranchStatus ("ESDfriend*", 1);
+       }
+       delete esdFriendFile;
       }
 
       fESD->ReadFromTree(fESDTree);
-      if (!fESDfriendExists) fESDTree->SetBranchStatus ("ESDfriend*", 0);
+      if (fESDfriendExists)
+      {
+       fESDfriend = (AliESDfriend*) fESD->FindListObject("AliESDfriend");
+       Info(kEH, "found and attached ESD friend.");
+      }
+      else
+      {
+       Warning(kEH, "ESDfriend not found.");
+      }
+
       if (fESDTree->GetEntry(0) <= 0)
-       {
-         delete fESDFile; fESDFile = 0;
-         delete fESD; fESD = 0;
-         Warning(kEH, "failed getting the first entry from esdTree.");
-       }
+      {
+       delete fESDFile; fESDFile = 0;
+       delete fESD; fESD = 0;
+       Warning(kEH, "failed getting the first entry from esdTree.");
+      }
       else
-       {
-         if (runNo < 0)
-           runNo = fESD->GetESDRun()->GetRunNumber();
-       }
+      {
+       if (runNo < 0)
+         runNo = fESD->GetESDRun()->GetRunNumber();
+      }
     }
     else // esdtree == 0
     {
@@ -263,14 +380,81 @@ void AliEveEventManager::Open()
     }
   }
 
+  // Open AOD and registered friends
+
+  TString aodPath(Form("%s/%s", fPath.Data(), fgAODFileName.Data()));
+  if (fPath.EndsWith(".zip")) aodPath.Form("%s#%s",fPath.Data(),fgAODFileName.Data());
+  if ((fAODFile = TFile::Open(aodPath)))
+  {
+    fAOD = new AliAODEvent();
+    fAODTree = (TTree*) fAODFile->Get("aodTree");
+    if (fAODTree != 0)
+    {
+      // Check if AODfriends exist and attach them.
+      TIter       friends(fgAODfriends);
+      TObjString *name;
+      while ((name = (TObjString*) friends()) != 0)
+      {
+       TString p(Form("%s/%s", fPath.Data(), name->GetName()));
+        if (fPath.EndsWith(".zip")) p.Form("%s#%s",fPath.Data(),name->GetName());
+       if (gSystem->AccessPathName(p, kReadPermission) == kFALSE)
+       {
+         fAODTree->AddFriend("aodTree", name->GetName());
+       }
+      }
+
+      fAOD->ReadFromTree(fAODTree);
+
+      if (fAODTree->GetEntry(0) <= 0)
+      {
+       delete fAODFile; fAODFile = 0;
+       delete fAOD;     fAOD     = 0;
+       Warning(kEH, "failed getting the first entry from addTree.");
+      }
+      else
+      {
+       if (runNo < 0)
+         runNo = fAOD->GetRunNumber();
+      }
+    }
+    else // aodtree == 0
+    {
+      delete fAODFile; fAODFile = 0;
+      delete fAOD;     fAOD     = 0;
+      Warning(kEH, "failed getting the aodTree.");
+    }
+  }
+  else // aod not readable
+  {
+    Warning(kEH, "can not read AOD file '%s'.", aodPath.Data());
+  }
+  if (fAODTree == 0)
+  {
+    if (fgAssertAOD)
+    {
+      throw (kEH + "AOD not initialized. Its precence was requested.");
+    } else {
+      Warning(kEH, "AOD not initialized.");
+    }
+  }
+
   // Open RunLoader from galice.root
 
   TString gaPath(Form("%s/galice.root", fPath.Data()));
+  if (fPath.EndsWith(".zip")) gaPath.Form("%s#%s",fPath.Data(),"galice.root");
   // If i use open directly, we get fatal.
   // Is AccessPathName check ok for xrootd / alien? Yes, not for http.
-  if (gSystem->AccessPathName(gaPath, kReadPermission) == kFALSE)
+  // Seems not to work for alien anymore.
+  // Fixed in ROOT on 27.10.2009, rev 30888.
+  // To revert after we move to root-5.26.
+  TFile *gafile = TFile::Open(gaPath);
+  if (gafile)
   {
-    fRunLoader = AliRunLoader::Open(gaPath);
+    gafile->Close();
+    delete gafile;
+  // if (gSystem->AccessPathName(gaPath, kReadPermission) == kFALSE)
+  // {
+    fRunLoader = AliRunLoader::Open(gaPath, GetName());
     if (fRunLoader)
     {
       TString alicePath = fPath + "/";
@@ -310,11 +494,40 @@ void AliEveEventManager::Open()
 
   // Open raw-data file
 
-  TString rawPath(Form("%s/%s", fPath.Data(), fgRawFileName.Data()));
-  // If i use open directly, raw-reader reports an error but i have     
-  // no way to detect it.       
-  // Is this (AccessPathName check) ok for xrootd / alien? Yes, not for http.   
-  if (gSystem->AccessPathName(rawPath, kReadPermission) == kFALSE)      
+  TString rawPath;
+  if (fgRawFromStandardLoc)
+  {
+    if (!fPath.BeginsWith("alien:"))
+      throw kEH + "Standard raw search requested, but the directory is not in AliEn.";
+    if (!fPath.Contains("/ESDs/"))
+      throw kEH + "Standard raw search requested, but does not contain 'ESDs' directory.";
+
+    TPMERegexp chunk("/([\\d\\.])+/?$");
+    Int_t nm = chunk.Match(fPath);
+    if (nm != 2)
+      throw kEH + "Standard raw search requested, but the path does not end with chunk-id directory.";
+
+    TPMERegexp esdstrip("/ESDs/.*");
+    rawPath = fPath;
+    esdstrip.Substitute(rawPath, "/raw/");
+    rawPath += chunk[0];
+    rawPath += ".root";
+
+    Info(kEH, "Standard raw search requested, using the following path:\n  %s\n", rawPath.Data());
+  }
+  else
+  {
+    rawPath.Form("%s/%s", fPath.Data(), fgRawFileName.Data());
+  }
+  // If i use open directly, raw-reader reports an error but i have
+  // no way to detect it.
+  // Is this (AccessPathName check) ok for xrootd / alien? Yes, not for http.
+  AliLog::EType_t oldLogLevel = (AliLog::EType_t) AliLog::GetGlobalLogLevel();
+  if (fgAssertRaw == kFALSE)
+  {
+    AliLog::SetGlobalLogLevel(AliLog::kFatal);
+  }
+  if (gSystem->AccessPathName(rawPath, kReadPermission) == kFALSE)
   {
     fRawReader = AliRawReader::Create(rawPath);
   }
@@ -322,12 +535,19 @@ void AliEveEventManager::Open()
   {
     fRawReader = AliRawReader::Create(fgRawFileName);
   }
+  if (fgAssertRaw == kFALSE)
+  {
+    AliLog::SetGlobalLogLevel(oldLogLevel);
+  }
+
   if (fRawReader == 0)
   {
     if (fgAssertRaw)
     {
       throw (kEH + "raw-data not initialized. Its precence was requested.");
-    } else {
+    }
+    else
+    {
       Warning(kEH, "raw-data not initialized.");
     }
   }
@@ -336,32 +556,86 @@ void AliEveEventManager::Open()
   {
     if (fRawReader)
     {
-      fRawReader->NextEvent();
+      if ( ! fRawReader->NextEvent())
+      {
+       throw (kEH + "can not go to first event in raw-reader to determine run-id.");
+      }
       runNo = fRawReader->GetRunNumber();
       Info(kEH, "Determining run-no from raw ... run=%d.", runNo);
       fRawReader->RewindEvents();
-    } else {
+    }
+    else 
+    {
       throw (kEH + "unknown run number.");
     }
   }
 
+  // Initialize OCDB ... only in master event-manager
+
+  if (this == fgMaster)
   {
     AliCDBManager* cdb = AliCDBManager::Instance();
-    cdb->SetDefaultStorage(fgCdbUri);
-    if (cdb->IsDefaultStorageSet() == kFALSE)
-      throw (kEH + "CDB initialization failed.");
-    cdb->SetRun(runNo);
+    if (cdb->IsDefaultStorageSet() == kTRUE)
+    {
+      Warning(kEH, "CDB already set - using the old storage:\n  '%s'",
+             cdb->GetDefaultStorage()->GetURI().Data());
+    }
+    else
+    {
+      if (fgCdbUri.IsNull())
+      {
+       gEnv->SetValue("Root.Stacktrace", "no");
+       Fatal("Open()", "OCDB path was not specified.");
+      }
+
+      // Handle some special cases for MC (should be in OCDBManager).
+      if (fgCdbUri == "mcideal://")
+       cdb->SetDefaultStorage("MC", "Ideal");
+      else if (fgCdbUri == "mcresidual://")
+       cdb->SetDefaultStorage("MC", "Residual");
+      else if (fgCdbUri == "mcfull://")
+       cdb->SetDefaultStorage("MC", "Full");
+      else if (fgCdbUri == "local://") {
+       fgCdbUri = "local://$ALICE_ROOT/OCDB";
+       cdb->SetDefaultStorage(fgCdbUri);
+      } else
+       cdb->SetDefaultStorage(fgCdbUri);
+
+      cdb->SetRun(runNo);
+
+      if (cdb->IsDefaultStorageSet() == kFALSE)
+       throw kEH + "CDB initialization failed for '" + fgCdbUri + "'.";
+    }
+    
+    if (fgCdbUri.BeginsWith("local://"))
+    {
+      TString grp     = "GRP/GRP/Data";
+      TString grppath = fPath + "/" + grp;
+      if (gSystem->AccessPathName(grppath, kReadPermission) == kFALSE)
+      {
+       if (cdb->GetSpecificStorage(grp))
+       {
+         Warning(kEH, "Local GRP exists, but the specific storage is already set.");
+       }
+       else
+       {
+         Info(kEH, "Setting CDB specific-storage for GRP from event directory.");
+         TString lpath("local://");
+         lpath += fPath;
+         cdb->SetSpecificStorage(grp, lpath);
+       }
+      }
+    }
   }
 
-  SetName(Form("Event %d", fEventId));
-  SetTitle(fPath);
   fIsOpen = kTRUE;
 }
 
-void AliEveEventManager::SetEvent(AliRunLoader *runLoader, AliRawReader *rawReader, AliESDEvent *esd)
+void AliEveEventManager::SetEvent(AliRunLoader *runLoader, AliRawReader *rawReader, AliESDEvent *esd, AliESDfriend *esdf)
 {
-  // Set an event from an external source
-  // The method is used in the online visualisation
+  // Set an event from an external source.
+  // The method is used in the online visualisation.
+  // AOD is not supported.
 
   static const TEveException kEH("AliEveEventManager::SetEvent ");
 
@@ -374,6 +648,8 @@ void AliEveEventManager::SetEvent(AliRunLoader *runLoader, AliRawReader *rawRead
   fRunLoader = runLoader;
   fRawReader = rawReader;
   fESD       = esd;
+  fESDfriend = esdf;
+  fAOD       = 0;
 
   fEventId++;
   fHasEvent     = kTRUE;
@@ -381,12 +657,14 @@ void AliEveEventManager::SetEvent(AliRunLoader *runLoader, AliRawReader *rawRead
 
   SetTitle("Online event in memory");
   SetName ("Online Event");
-
   ElementChanged();
+
   AfterNewEventLoaded();
+
+  if (fAutoLoad) StartAutoLoadTimer();
 }
 
-Int_t AliEveEventManager::GetMaxEventId(Bool_t /*refreshESD*/) const
+Int_t AliEveEventManager::GetMaxEventId(Bool_t refreshESD) const
 {
   // Returns maximum available event id.
   // If under external control or event is not opened -1 is returned.
@@ -405,13 +683,17 @@ Int_t AliEveEventManager::GetMaxEventId(Bool_t /*refreshESD*/) const
 
   if (fESDTree)
   {
-    // Refresh crashes with root-5.21.1-alice.
-    // Fixed by Philippe 5.8.2008 r25053, can be reactivated
-    // when we move to a newer root.
-    // if (refreshESD)
-    //   fESDTree->Refresh();
+    if (refreshESD)
+    {
+       fESDTree->Refresh();
+       fPEventSelector->Update();
+    }
     return fESDTree->GetEntries() - 1;
   }
+  else if (fAODTree)
+  {
+    return fAODTree->GetEntries() - 1;
+  }
   else if (fRunLoader)
   {
     return fRunLoader->GetNumberOfEvents() - 1;
@@ -423,7 +705,7 @@ Int_t AliEveEventManager::GetMaxEventId(Bool_t /*refreshESD*/) const
   }
   else
   {
-    throw (kEH + "neither RunLoader, ESD nor Raw loaded.");
+    throw (kEH + "neither ESD, AOD, RunLoader nor Raw loaded.");
   }
 }
 
@@ -461,14 +743,18 @@ void AliEveEventManager::GotoEvent(Int_t event)
   Int_t maxEvent = 0;
   if (fESDTree)
   {
-    // Refresh crashes with root-5.21.1-alice.
-    // Fixed by Philippe 5.8.2008 r25053, can be reactivated
-    // when we move to a newer root.
-    // fESDTree->Refresh();
+    if (event >= fESDTree->GetEntries())
+      fESDTree->Refresh();
     maxEvent = fESDTree->GetEntries() - 1;
     if (event < 0)
       event = fESDTree->GetEntries() + event;
   }
+  else if (fAODTree)
+  {
+    maxEvent = fAODTree->GetEntries() - 1;
+    if (event < 0)
+      event = fAODTree->GetEntries() + event;
+  }
   else if (fRunLoader)
   {
     maxEvent = fRunLoader->GetNumberOfEvents() - 1;
@@ -503,14 +789,27 @@ void AliEveEventManager::GotoEvent(Int_t event)
                       event, 0, maxEvent));
   }
 
+  TString sysInfoHeader;
+  sysInfoHeader.Form("AliEveEventManager::GotoEvent(%d) - ", event);
+  AliSysInfo::AddStamp(sysInfoHeader + "Start");
+
   TEveManager::TRedrawDisabler rd(gEve);
   gEve->Redraw3D(kFALSE, kTRUE); // Enforce drop of all logicals.
 
   // !!! MT this is somewhat brutal; at least optionally, one could be
   // a bit gentler, checking for objs owning their external refs and having
   // additinal parents.
+  gEve->GetViewers()->DeleteAnnotations();
+  fTransients->DestroyElements();
+  for (TEveElement::List_i i = fTransientLists->BeginChildren();
+       i != fTransientLists->EndChildren(); ++i)
+  {
+    (*i)->DestroyElements();
+  }
   DestroyElements();
 
+  AliSysInfo::AddStamp(sysInfoHeader + "PostDestroy");
+
   if (fESDTree) {
     if (fESDTree->GetEntry(event) <= 0)
       throw (kEH + "failed getting required event from ESD.");
@@ -519,6 +818,11 @@ void AliEveEventManager::GotoEvent(Int_t event)
       fESD->SetESDfriend(fESDfriend);
   }
 
+  if (fAODTree) {
+    if (fAODTree->GetEntry(event) <= 0)
+      throw (kEH + "failed getting required event from AOD.");
+  }
+
   if (fRunLoader) {
     if (fRunLoader->GetEvent(event) != 0)
       throw (kEH + "failed getting required event.");
@@ -553,17 +857,24 @@ void AliEveEventManager::GotoEvent(Int_t event)
 
   fHasEvent = kTRUE;
   fEventId  = event;
-  SetName(Form("Event %d", fEventId));
-  ElementChanged();
+  if (this == fgMaster)
+  {
+    SetName(Form("Event %d", fEventId));
+    ElementChanged();
+  }
+
+  AliSysInfo::AddStamp(sysInfoHeader + "PostLoadEvent");
 
   AfterNewEventLoaded();
+
+  AliSysInfo::AddStamp(sysInfoHeader + "PostUserActions");
 }
 
 void AliEveEventManager::NextEvent()
 {
   // Loads next event.
   // Does magick needed for online display when under external event control.
-  
+
   static const TEveException kEH("AliEveEventManager::NextEvent ");
 
   if (fAutoLoadTimerRunning)
@@ -579,12 +890,17 @@ void AliEveEventManager::NextEvent()
 
     gSystem->ExitLoop();
   }
-  else
+  else if (fESDTree)
   {
-    if (fEventId < GetMaxEventId(kTRUE))
-      GotoEvent(fEventId + 1);
-    else
-      GotoEvent(0);
+    Int_t nextevent=0;
+    if (fPEventSelector->FindNext(nextevent))
+    {
+      GotoEvent(nextevent);
+    }
+  }
+  else if (fEventId < GetMaxEventId(kTRUE))
+  {
+    GotoEvent(fEventId + 1);
   }
 }
 
@@ -603,7 +919,18 @@ void AliEveEventManager::PrevEvent()
     throw (kEH + "Event-loop is under external control.");
   }
 
-  GotoEvent(fEventId - 1);
+  if (fESDTree)
+  {
+    Int_t nextevent=0;
+    if (fPEventSelector->FindPrev(nextevent))
+    {
+      GotoEvent(nextevent);
+    }
+  }
+  else if (fEventId > 0)
+  {
+    GotoEvent(fEventId - 1);
+  }
 }
 
 void AliEveEventManager::Close()
@@ -623,12 +950,21 @@ void AliEveEventManager::Close()
 
   if (fESDTree) {
     delete fESD;       fESD       = 0;
-    delete fESDfriend; fESDfriend = 0;
+    // delete fESDfriend; // friend tree is deleted with the tree
+    fESDfriend = 0;
+    fESDfriendExists = kFALSE;
 
     delete fESDTree;   fESDTree = 0;
     delete fESDFile;   fESDFile = 0;
   }
 
+  if (fAODTree) {
+    delete fAOD;       fAOD       = 0;
+
+    delete fAODTree;   fAODTree = 0;
+    delete fAODFile;   fAODFile = 0;
+  }
+
   if (fRunLoader) {
     delete fRunLoader; fRunLoader = 0;
   }
@@ -647,32 +983,50 @@ void AliEveEventManager::Close()
 // Static convenience functions, mainly used from macros.
 //------------------------------------------------------------------------------
 
+Int_t AliEveEventManager::CurrentEventId()
+{
+  // Return current event-id.
+
+  static const TEveException kEH("AliEveEventManager::CurrentEventId ");
+
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
+    throw (kEH + "ALICE event not ready.");
+  return fgCurrent->GetEventId();
+}
+
 Bool_t AliEveEventManager::HasRunLoader()
 {
   // Check if AliRunLoader is initialized.
 
-  return gAliEveEvent && gAliEveEvent->fHasEvent && gAliEveEvent->fRunLoader;
+  return fgCurrent && fgCurrent->fHasEvent && fgCurrent->fRunLoader;
 }
 
 Bool_t AliEveEventManager::HasESD()
 {
   // Check if AliESDEvent is initialized.
 
-  return gAliEveEvent && gAliEveEvent->fHasEvent && gAliEveEvent->fESD;
+  return fgCurrent && fgCurrent->fHasEvent && fgCurrent->fESD;
 }
 
 Bool_t AliEveEventManager::HasESDfriend()
 {
   // Check if AliESDfriend is initialized.
 
-  return gAliEveEvent && gAliEveEvent->fHasEvent && gAliEveEvent->fESDfriend;
+  return fgCurrent && fgCurrent->fHasEvent && fgCurrent->fESDfriend;
+}
+
+Bool_t AliEveEventManager::HasAOD()
+{
+  // Check if AliESDEvent is initialized.
+
+  return fgCurrent && fgCurrent->fHasEvent && fgCurrent->fAOD;
 }
 
 Bool_t AliEveEventManager::HasRawReader()
 {
   // Check if raw-reader is initialized.
 
-  return gAliEveEvent && gAliEveEvent->fHasEvent && gAliEveEvent->fRawReader;
+  return fgCurrent && fgCurrent->fHasEvent && fgCurrent->fRawReader;
 }
 
 AliRunLoader* AliEveEventManager::AssertRunLoader()
@@ -683,11 +1037,11 @@ AliRunLoader* AliEveEventManager::AssertRunLoader()
 
   static const TEveException kEH("AliEveEventManager::AssertRunLoader ");
 
-  if (gAliEveEvent == 0 || gAliEveEvent->fHasEvent == kFALSE)
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
     throw (kEH + "ALICE event not ready.");
-  if (gAliEveEvent->fRunLoader == 0)
+  if (fgCurrent->fRunLoader == 0)
     throw (kEH + "AliRunLoader not initialised.");
-  return gAliEveEvent->fRunLoader;
+  return fgCurrent->fRunLoader;
 }
 
 AliESDEvent* AliEveEventManager::AssertESD()
@@ -698,11 +1052,11 @@ AliESDEvent* AliEveEventManager::AssertESD()
 
   static const TEveException kEH("AliEveEventManager::AssertESD ");
 
-  if (gAliEveEvent == 0 || gAliEveEvent->fHasEvent == kFALSE)
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
     throw (kEH + "ALICE event not ready.");
-  if (gAliEveEvent->fESD == 0)
+  if (fgCurrent->fESD == 0)
     throw (kEH + "AliESD not initialised.");
-  return gAliEveEvent->fESD;
+  return fgCurrent->fESD;
 }
 
 AliESDfriend* AliEveEventManager::AssertESDfriend()
@@ -713,11 +1067,26 @@ AliESDfriend* AliEveEventManager::AssertESDfriend()
 
   static const TEveException kEH("AliEveEventManager::AssertESDfriend ");
 
-  if (gAliEveEvent == 0 || gAliEveEvent->fHasEvent == kFALSE)
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
     throw (kEH + "ALICE event not ready.");
-  if (gAliEveEvent->fESDfriend == 0)
+  if (fgCurrent->fESDfriend == 0)
     throw (kEH + "AliESDfriend not initialised.");
-  return gAliEveEvent->fESDfriend;
+  return fgCurrent->fESDfriend;
+}
+
+AliAODEvent* AliEveEventManager::AssertAOD()
+{
+  // Make sure AliAODEvent is initialized and return it.
+  // Throws exception in case AOD is not available.
+  // Static utility for macros.
+
+  static const TEveException kEH("AliEveEventManager::AssertAOD ");
+
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
+    throw (kEH + "ALICE event not ready.");
+  if (fgCurrent->fAOD == 0)
+    throw (kEH + "AliAOD not initialised.");
+  return fgCurrent->fAOD;
 }
 
 AliRawReader* AliEveEventManager::AssertRawReader()
@@ -726,32 +1095,52 @@ AliRawReader* AliEveEventManager::AssertRawReader()
 
   static const TEveException kEH("AliEveEventManager::AssertRawReader ");
 
-  if (gAliEveEvent == 0 || gAliEveEvent->fHasEvent == kFALSE)
+  if (fgCurrent == 0 || fgCurrent->fHasEvent == kFALSE)
     throw (kEH + "ALICE event not ready.");
-  if (gAliEveEvent->fRawReader == 0)
+  if (fgCurrent->fRawReader == 0)
     throw (kEH + "RawReader not ready.");
 
-  return gAliEveEvent->fRawReader;
+  return fgCurrent->fRawReader;
 }
 
-AliMagF* AliEveEventManager::AssertMagField()
-{
-  // Make sure AliMagF is initialized and returns it.
-  // Run-loader must be initialized to get the correct magnetic field!
-  // Throws exception in case magnetic field is not available.
-  // Static utility for macros.
+//==============================================================================
 
-  // !!!! This should be fixed ... get field also in some other way,
-  // not only via run-loader.
+AliMagF* AliEveEventManager::AssertMagField()   
+{       
+  // Make sure AliMagF is initialized and returns it.   
+  // Throws exception in case magnetic field is not available.          
+  // Static utility for macros.         
 
-  if (fgMagField == 0)
+  static const TEveException kEH("AliEveEventManager::AssertMagField ");        
+                
+  if (fgMagField)
+    return fgMagField;
+
+  if (TGeoGlobalMagField::Instance()->GetField())
   {
-    if (gAliEveEvent && gAliEveEvent->fRunLoader && gAliEveEvent->fRunLoader->GetAliRun())
-      fgMagField = gAliEveEvent->fRunLoader->GetAliRun()->Field();
-    else
-      fgMagField = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
+    fgMagField = dynamic_cast<AliMagF*>(TGeoGlobalMagField::Instance()->GetField());
+    if (fgMagField == 0)
+      throw kEH + "Global field set, but it is not AliMagF.";
+    return fgMagField;
   }
-  return fgMagField;
+
+  if (!fgGRPLoaded)
+  {
+    InitGRP();
+  }
+
+  if (TGeoGlobalMagField::Instance()->GetField())
+  {
+    fgMagField = dynamic_cast<AliMagF*>(TGeoGlobalMagField::Instance()->GetField());
+    if (fgMagField == 0)
+      throw kEH + "Global field set, but it is not AliMagF.";
+  }
+  else
+  {
+    throw kEH + "Could not initialize magnetic field.";
+  }
+
+  return fgMagField;    
 }
 
 TGeoManager* AliEveEventManager::AssertGeometry()
@@ -788,6 +1177,80 @@ TGeoManager* AliEveEventManager::AssertGeometry()
   return gGeoManager;
 }
 
+//------------------------------------------------------------------------------
+
+AliEveEventManager* AliEveEventManager::AddDependentManager(const TString& name, const TString& path)
+{
+  // Create and attach a dependent event-manager.
+  // It is not added into eve list tree.
+
+  static const TEveException kEH("AliEveEventManager::AddDependentManager ");
+
+  if (fgMaster == 0)
+    throw(kEH + "Master event-manager must be instantiated first.");
+
+  if (fgMaster->fSubManagers == 0)
+  {
+    fgMaster->fSubManagers = new TList;
+    fgMaster->fSubManagers->SetOwner(kTRUE);
+  }
+
+  AliEveEventManager* new_mgr = 0;
+  fgCurrent = 0;
+  try
+  {
+    new_mgr = new AliEveEventManager(name, path, fgMaster->fEventId);
+    fgMaster->fSubManagers->Add(new_mgr);
+  }
+  catch (TEveException& exc)
+  {
+    ::Error(kEH, "Creation of new event-manager failed: '%s'.", exc.Data());
+  }
+  fgCurrent = fgMaster;
+
+  return new_mgr;
+}
+
+AliEveEventManager* AliEveEventManager::GetDependentManager(const TString& name)
+{
+  // Get a dependant manager by name.
+  // This will not change the current manager, use helper class
+  // AliEveEventManager::CurrentChanger for that.
+
+  static const TEveException kEH("AliEveEventManager::GetDependentManager ");
+
+  if (fgMaster == 0)
+    throw(kEH + "Master event-manager must be instantiated first.");
+
+  if (fgMaster->fSubManagers == 0)
+    return 0;
+
+  return dynamic_cast<AliEveEventManager*>(fgMaster->fSubManagers->FindObject(name));
+}
+
+AliEveEventManager* AliEveEventManager::GetMaster()
+{
+  // Get master event-manager.
+
+  return fgMaster;
+}
+
+AliEveEventManager* AliEveEventManager::GetCurrent()
+{
+  // Get current event-manager.
+
+  return fgCurrent;
+}
+
+void AliEveEventManager::RegisterTransient(TEveElement* element)
+{
+  GetCurrent()->fTransients->AddElement(element);
+}
+
+void AliEveEventManager::RegisterTransientList(TEveElement* element)
+{
+  GetCurrent()->fTransientLists->AddElement(element);
+}
 
 //------------------------------------------------------------------------------
 // Autoloading of events
@@ -823,6 +1286,24 @@ void AliEveEventManager::SetAutoLoad(Bool_t autoLoad)
   }
 }
 
+void AliEveEventManager::SetTrigSel(Int_t trig)
+{
+  static const TEveException kEH("AliEveEventManager::SetTrigSel ");
+
+  if (!fRawReader)
+    {
+    Warning(kEH, "No Raw-reader exists. Ignoring the call.");
+    return;
+  }
+  else
+  {
+    ULong64_t trigMask = 0;
+    if (trig >= 0) trigMask = (1ull << trig);
+    Info(kEH,"Trigger selection: 0x%llx",trigMask);
+    fRawReader->SelectEvents(-1,trigMask,NULL);
+  }
+}
+
 void AliEveEventManager::StartAutoLoadTimer()
 {
   // Start the auto-load timer.
@@ -856,11 +1337,10 @@ void AliEveEventManager::AutoLoadNextEvent()
 
   StopAutoLoadTimer();
   NextEvent();
-  if (fAutoLoad)
+  if (fAutoLoad && !fExternalCtrl)
     StartAutoLoadTimer();
 }
 
-
 //------------------------------------------------------------------------------
 // Post event-loading functions
 //------------------------------------------------------------------------------
@@ -872,12 +1352,44 @@ void AliEveEventManager::AfterNewEventLoaded()
   //
   // Virtual from TEveEventManager.
 
+  static const TEveException kEH("AliEveEventManager::AfterNewEventLoaded ");
+
+  NewEventDataLoaded();
+
   if (fExecutor)
     fExecutor->ExecMacros();
 
   TEveEventManager::AfterNewEventLoaded();
 
   NewEventLoaded();
+
+  if (this == fgMaster && fSubManagers != 0)
+  {
+    TIter next(fSubManagers);
+    while ((fgCurrent = dynamic_cast<AliEveEventManager*>(next())) != 0)
+    {
+      gEve->SetCurrentEvent(fgCurrent);
+      try
+      {
+       fgCurrent->GotoEvent(fEventId);
+      }
+      catch (TEveException& exc)
+      {
+       // !!! Should somehow tag / disable / remove it?
+       Error(kEH, "Getting event %d for sub-event-manager '%s' failed: '%s'.",
+             fEventId, fgCurrent->GetName(), exc.Data());
+      }
+    }
+    fgCurrent = fgMaster;
+    gEve->SetCurrentEvent(fgMaster);
+  }
+}
+
+void AliEveEventManager::NewEventDataLoaded()
+{
+  // Emit NewEventDataLoaded signal.
+
+  Emit("NewEventDataLoaded()");
 }
 
 void AliEveEventManager::NewEventLoaded()
@@ -925,13 +1437,13 @@ TString AliEveEventManager::GetEventInfoHorizontal() const
     TString firedtrclasses = fESD->GetFiredTriggerClasses();
     TTimeStamp ts(fESD->GetTimeStamp());
     esdInfo.Form("ESD event info: Run#: %d  Event type: %d (%s)  Period: %x  Orbit: %x  BC: %x\n"
-                "Active trigger classes: %s\nTrigger: %llx (%s)\nEvent# in file: %d  Timestamp: %s",
+                "Active trigger classes: %s\nTrigger: %llx (%s)\nEvent# in file: %d  Timestamp: %s, MagField: %.2e",
                 fESD->GetRunNumber(),
                 fESD->GetEventType(),AliRawEventHeaderBase::GetTypeName(fESD->GetEventType()),
                 fESD->GetPeriodNumber(),fESD->GetOrbitNumber(),fESD->GetBunchCrossNumber(),
                 acttrclasses.Data(),
                 fESD->GetTriggerMask(),firedtrclasses.Data(),
-                fESD->GetEventNumberInFile(), ts.AsString("s"));
+                fESD->GetEventNumberInFile(), ts.AsString("s"), fESD->GetMagneticField());
   }
 
   return rawInfo + esdInfo;
@@ -979,4 +1491,112 @@ TString AliEveEventManager::GetEventInfoVertical() const
 
   return rawInfo + "\n" + esdInfo;
 }
-  
+
+
+//==============================================================================
+// Reading of GRP and MagneticField.
+// This is a reap-off from reconstruction ... should really be a common
+// code to do this somewhere in STEER.
+//==============================================================================
+
+Bool_t AliEveEventManager::InitGRP()
+{
+  //------------------------------------
+  // Initialization of the GRP entry 
+  //------------------------------------
+
+  static const TEveException kEH("AliEveEventManager::InitGRP ");
+
+  AliGRPManager grpMgr;
+  if (!grpMgr.ReadGRPEntry()) {
+    return kFALSE;
+  }
+  fgGRPLoaded = kTRUE;
+  if (!grpMgr.SetMagField()) {
+    throw kEH + "Setting of field failed!";
+  }
+
+  //*** Get the diamond profiles from OCDB
+  // Eventually useful.
+
+  /*
+    entry = AliCDBManager::Instance()->Get("GRP/Calib/MeanVertexSPD");
+    if (entry) {
+    fDiamondProfileSPD = dynamic_cast<AliESDVertex*> (entry->GetObject());  
+    } else {
+    ::Error(kEH, "No SPD diamond profile found in OCDB!");
+    }
+
+    entry = AliCDBManager::Instance()->Get("GRP/Calib/MeanVertex");
+    if (entry) {
+    fDiamondProfile = dynamic_cast<AliESDVertex*> (entry->GetObject());  
+    } else {
+    ::Error(kEH, "No diamond profile found in OCDB!");
+    }
+
+    entry = AliCDBManager::Instance()->Get("GRP/Calib/MeanVertexTPC");
+    if (entry) {
+    fDiamondProfileTPC = dynamic_cast<AliESDVertex*> (entry->GetObject());  
+    } else {
+    ::Error(kEH, "No TPC diamond profile found in OCDB!");
+    }
+  */
+
+  return kTRUE;
+} 
+
+//------------------------------------
+// Global variables management
+//------------------------------------
+
+Bool_t AliEveEventManager::InsertGlobal(const TString& tag, TEveElement* model)
+{
+   // Insert a new visualization-parameter database entry with the default
+   return InsertGlobal(tag, model, fGlobalReplace, fGlobalUpdate);
+}
+
+Bool_t AliEveEventManager::InsertGlobal(const TString& tag, TEveElement* model,
+                    Bool_t replace, Bool_t update)
+{
+   TPair* pair = (TPair*) fGlobal->FindObject(tag);
+   if (pair)
+   {
+      if (replace)
+      {
+         model->IncDenyDestroy();
+         model->SetRnrChildren(kFALSE);
+
+         TEveElement* old_model = dynamic_cast<TEveElement*>(pair->Value());
+         while (old_model->HasChildren())
+         {
+            TEveElement *el = old_model->FirstChild();
+            el->SetVizModel(model);
+            if (update)
+            {
+               el->CopyVizParams(model);
+               el->PropagateVizParamsToProjecteds();
+            }
+         }
+         old_model->DecDenyDestroy();
+
+         pair->SetValue(dynamic_cast<TObject*>(model));
+         return kTRUE;
+      }
+      else
+      {
+         return kFALSE;
+      }
+   }
+   else
+   {
+      model->IncDenyDestroy();
+      model->SetRnrChildren(kFALSE);
+      fGlobal->Add(new TObjString(tag), dynamic_cast<TObject*>(model));
+      return kTRUE;
+   }
+}
+
+TEveElement* AliEveEventManager::FindGlobal(const TString& tag)
+{
+   return dynamic_cast<TEveElement*>(fGlobal->GetValue(tag));
+}