]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/macros/alieve_init.C
Merge changes from branches/dev/EVE. This branch was following development in ROOT...
[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 // !!!!! Need initialization that will also work for raw.
16 // Path and event-id are usually not needed.
17 // const Text_t* raw_file = 0,
18
19 void alieve_init(const Text_t* path   = ".", Int_t event=0,
20                  const Text_t* cdburi = 0,
21                  Bool_t assert_runloader=kFALSE, Bool_t assert_esd=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   // TEveUtil::AssertMacro("region_marker.C");
29
30   gSystem->ProcessEvents();
31
32   // Open event
33   if(path != 0) {
34     AliEveEventManager::SetCdbUri(cdburi);
35     AliEveEventManager::SetAssertElements(assert_runloader, assert_esd);
36     printf("Opening event %d from '%s' ...", event, path); fflush(stdout);
37     gAliEveEvent = new AliEveEventManager(path, event);
38     printf(" done.\n");
39     gEve->AddEvent(gAliEveEvent);
40   }
41 }
42
43 void alieve_init_import_macros()
44 {
45   // Put macros in the list of browsables, add a macro browser to
46   // top-level GUI.
47
48   TString macdir("$(REVESYS)/alice-macros");
49   gSystem->ExpandPathName(macdir);
50
51   TFolder* f = gEve->GetMacroFolder();
52   void* dirhandle = gSystem->OpenDirectory(macdir.Data());
53   if(dirhandle != 0) {
54     char* filename;
55     TPRegexp re("\.C$");
56     std::list<string> names;
57     while((filename = gSystem->GetDirEntry(dirhandle)) != 0) {
58       if(re.Match(filename)) {
59         names.push_back(filename);
60       }
61     }
62     names.sort();
63     //PH The line below is replaced waiting for a fix in Root
64     //PH which permits to use variable siza arguments in CINT
65     //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
66     // f->Add(new TEveMacro(Form("%s/%s", macdir.Data(), filename)));
67     char fullName[1000];
68     for (std::list<string>::iterator si=names.begin(); si!=names.end(); ++si)
69     {
70       sprintf(fullName,"%s/%s", macdir.Data(), si->c_str());
71       f->Add(new TEveMacro(fullName));
72     }
73   }
74   gSystem->FreeDirectory(dirhandle);
75
76   gROOT->GetListOfBrowsables()->Add
77     // (new TSystemDirectory("alice-macros", macdir.Data())); // !!!! this spits blood, but then works
78     (new TSystemDirectory(macdir.Data(), macdir.Data()));
79
80   {
81     TEveBrowser   *br = gEve->GetBrowser();
82     TGFileBrowser *fb = 0;
83     fb = br->GetFileBrowser();
84     fb->GotoDir(macdir);
85     {
86       br->StartEmbedding(0);
87       fb = br->MakeFileBrowser();
88       fb->BrowseObj(f);
89       fb->Show();
90       br->StopEmbedding();
91       br->SetTabTitle("Macros", 0);
92       br->SetTab(0, 0);
93     }
94   }
95 }