]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/macros/alieve_online.C
de4e6999426b96d1a41d49971758cf90b3e01df9
[u/mrichter/AliRoot.git] / EVE / macros / alieve_online.C
1 /**************************************************************************
2  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
3  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
4  * full copyright notice.                                                 *
5  **************************************************************************/
6
7 TEveGeoShape *gGeomGentle    = 0;
8
9 void alieve_online_init()
10 {
11   gROOT->LoadMacro("geom_gentle.C");
12
13   gROOT->LoadMacro("primary_vertex.C");
14   gROOT->LoadMacro("esd_tracks.C");
15
16   gROOT->LoadMacro("its_clusters.C++");
17   gROOT->LoadMacro("tpc_clusters.C++");
18   gROOT->LoadMacro("trd_clusters.C++");
19
20   gROOT->LoadMacro("acorde_raw.C");
21   gROOT->LoadMacro("its_raw.C");
22   gROOT->LoadMacro("tpc_raw.C");
23
24   // Temp fix !!!
25   TGeoManager *man = gGeoManager;
26   gGeomGentle = geom_gentle();
27   // Temp fix !!!
28   gGeoManager = man;
29
30   gROOT->ProcessLine(".L SplitGLView.C++g"); // !!!! debug-mode
31   TEveBrowser* browser = gEve->GetBrowser();
32   browser->ExecPlugin("SplitGLView", 0, "new SplitGLView(gClient->GetRoot(), 600, 450, kTRUE)");
33
34   if (gRPhiMgr) {
35     TEveProjectionAxes* a = new TEveProjectionAxes(gRPhiMgr);
36     a->SetNumTickMarks(3);
37     a->SetText("R-Phi");
38     a->SetFontFile("comicbd");
39     a->SetFontSize(10);
40     gEve->GetScenes()->FindChild("R-Phi Projection")->AddElement(a);
41   }
42   if (gRhoZMgr) {
43     TEveProjectionAxes* a = new TEveProjectionAxes(gRhoZMgr);
44     a->SetNumTickMarks(3);
45     a->SetText("Rho-Z");
46     a->SetFontFile("comicbd");
47     a->SetFontSize(10);
48     gEve->GetScenes()->FindChild("Rho-Z Projection")->AddElement(a);
49   }
50
51   gEve->Redraw3D(kTRUE);
52 }
53
54 void alieve_online_on_new_event()
55 {
56
57   its_raw();
58   its_clusters();
59
60   tpc_raw();
61   tpc_clusters();
62
63   acorde_raw();
64
65   primary_vertex();
66   esd_tracks();
67
68   AliESDEvent* esd = AliEveEventManager::AssertESD();
69   Double_t x[3];
70   esd->GetPrimaryVertex()->GetXYZ(x);
71
72   TEveElement* top = gEve->GetCurrentEvent();
73
74   if (gRPhiMgr && top) {
75     gRPhiMgr->DestroyElements();
76     gRPhiMgr->SetCenter(x[0], x[1], x[2]);
77     gRPhiMgr->ImportElements(gGeomGentle);
78     gRPhiMgr->ImportElements(top);
79   }
80   if (gRhoZMgr && top) {
81     gRhoZMgr->DestroyElements();
82     gRhoZMgr->SetCenter(x[0], x[1], x[2]);
83     gRhoZMgr->ImportElements(gGeomGentle);
84     gRhoZMgr->ImportElements(top);
85   }
86
87   gROOT->ProcessLine("SplitGLView::UpdateSummary()");
88 }