]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/ana_list.C
Fixed bug in the PHOS module angular direction
[u/mrichter/AliRoot.git] / EVE / alice-macros / ana_list.C
CommitLineData
664d520c 1// Start the list analyser. No objects will be loaded into the list! To add e.g. AliTrackPoints you can do the following:
2// - Run the macro "esd_tracks.C"
3// - Select some track you want to analyse as follows: Hold "shift" und right-click on the track (sometimes you have to hold the right mouse button). The menu pops up
4// -> Select "ImportClustersFromIndex"
5// -> To this for all tracks you want to analyse.
6// - Run this macro (ana_list.C)
7// - In the tab "eve" in the browser select the list analyser (called "Analysis objects" in the standard case)
8// - Select the "list" tab in the editor of this object.
9// - Click the button "start"
10// - Select e.g. clusters by holding "ctrl"+"alt" (depending on your system, holding the "alt" only can also be fine) and left-clicking on the desired cluster
11// Use the list analyser "as usual" (see class documentation)
938315b8 12
13void ana_list(TEveElement *cont = 0)
14{
664d520c 15 AliEveListAnalyser * objList = new AliEveListAnalyser("Analysis objects");
16
17 objList->SetTitle("Analysis objects (0)");
938315b8 18
664d520c 19 gEve->AddElement(objList, cont);
938315b8 20
21 gEve->Redraw3D();
938315b8 22}