]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/macros/VizDB_scan.C
Prototype for visualization-macro manager and gui.
[u/mrichter/AliRoot.git] / EVE / macros / VizDB_scan.C
CommitLineData
f6afd0e1 1void VizDB_scan()
2{
3 TEvePointSet* ps;
4
5 // Clusters
6
7 ps = new TEvePointSet();
8 ps->SetMarkerColor(5);
9 ps->SetMarkerSize(0.2);
10 ps->SetMarkerStyle(2);
11 gEve->InsertVizDBEntry("ITS Clusters", ps);
12
13 ps = new TEvePointSet();
14 ps->SetMarkerColor(4);
15 ps->SetMarkerSize(0.2);
16 ps->SetMarkerStyle(2);
17 gEve->InsertVizDBEntry("TPC Clusters", ps);
18
19 ps = new TEvePointSet();
20 ps->SetMarkerColor(7);
21 ps->SetMarkerSize(0.5);
22 ps->SetMarkerStyle(4);
23 gEve->InsertVizDBEntry("TRD Clusters", ps);
24
25 ps = new TEvePointSet();
26 ps->SetMarkerColor(kOrange);
27 ps->SetMarkerSize(0.5);
28 ps->SetMarkerStyle(4);
29 gEve->InsertVizDBEntry("TOF Clusters", ps);
30}