]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/macros/alieve_init.C
First pass of changes required for visualization of event-embedding.
[u/mrichter/AliRoot.git] / EVE / macros / alieve_init.C
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 #ifndef __CINT_
11 #include <list>
12 #include <string>
13 #endif
14
15 void alieve_init(const Text_t* path   = ".", Int_t event=0,
16                  const Text_t* esdfile = 0,
17                  const Text_t* rawfile = 0,
18                  const Text_t* cdburi  = 0,
19                  Bool_t assert_runloader = kFALSE,
20                  Bool_t assert_esd       = kFALSE,
21                  Bool_t assert_raw       = kFALSE)
22 {
23   Info("alieve_init", "Adding standard macros.");
24   TString  hack = gSystem->pwd(); // Problem with TGFileBrowser cding
25   alieve_init_import_macros();
26   gSystem->cd(hack);
27
28   // Temporarily assert default vizdb
29   TEveUtil::AssertMacro("VizDB_scan.C");
30
31   gSystem->ProcessEvents();
32
33   AliEveEventManager::SetESDFileName(esdfile);
34   AliEveEventManager::SetRawFileName(rawfile);
35   AliEveEventManager::SetCdbUri(cdburi);
36   AliEveEventManager::SetAssertElements(assert_runloader, assert_esd, assert_raw);
37
38   // Open event
39   if (path != 0)
40   {
41     Info("alieve_init", "Opening event %d from '%s' ...", event, path);
42     new AliEveEventManager(path, event);
43     gEve->AddEvent(AliEveEventManager::GetMaster());
44   }
45 }
46
47 void alieve_init_import_macros()
48 {
49   // Put macros in the list of browsables, add a macro browser to
50   // top-level GUI.
51
52   TString macdir("$(ALICE_ROOT)/EVE/alice-macros");
53   gSystem->ExpandPathName(macdir);
54
55   TFolder* f = gEve->GetMacroFolder();
56   void* dirhandle = gSystem->OpenDirectory(macdir.Data());
57   if (dirhandle != 0)
58   {
59     char* filename;
60     TPRegexp re("\.C$");
61     std::list<string> names;
62     while ((filename = gSystem->GetDirEntry(dirhandle)) != 0)
63     {
64       if (re.Match(filename))
65         names.push_back(filename);
66     }
67     names.sort();
68     //PH The line below is replaced waiting for a fix in Root
69     //PH which permits to use variable siza arguments in CINT
70     //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
71     // f->Add(new TEveMacro(Form("%s/%s", macdir.Data(), filename)));
72     char fullName[1000];
73     for (std::list<string>::iterator si=names.begin(); si!=names.end(); ++si)
74     {
75       sprintf(fullName,"%s/%s", macdir.Data(), si->c_str());
76       f->Add(new TEveMacro(fullName));
77     }
78   }
79   gSystem->FreeDirectory(dirhandle);
80
81   gROOT->GetListOfBrowsables()->Add
82     // (new TSystemDirectory("alice-macros", macdir.Data())); // !!!! this spits blood, but then works
83     (new TSystemDirectory(macdir.Data(), macdir.Data()));
84
85   {
86     TEveBrowser   *br = gEve->GetBrowser();
87     TGFileBrowser *fb = 0;
88     fb = br->GetFileBrowser();
89     fb->GotoDir(macdir);
90     {
91       br->StartEmbedding(0);
92       fb = br->MakeFileBrowser();
93       fb->BrowseObj(f);
94       fb->Show();
95       br->StopEmbedding();
96       br->SetTabTitle("Macros", 0);
97       br->SetTab(0, 0);
98     }
99   }
100 }