]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/hits_from_label.C
In muon-related macros in EVE:
[u/mrichter/AliRoot.git] / EVE / alice-macros / hits_from_label.C
CommitLineData
5a5a1232 1// $Id$
d810d0de 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 *
51346b82 7 * full copyright notice. *
d810d0de 8 **************************************************************************/
5a5a1232 9
84aff7a4 10void hits_from_label(Int_t label=0, TEveElement* cont)
5a5a1232 11{
84aff7a4 12 TEveUtil::LoadMacro("its_hits.C");
13
14 TEvePointSet* h = 0;
7be1e8cd 15 //PH The line below is replaced waiting for a fix in Root
16 //PH which permits to use variable siza arguments in CINT
17 //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
18 //PH h = its_hits("fX:fY:fZ", Form("ITS.fTrack==%d", label));
19 char form[1000];
20 sprintf(form,"ITS.fTrack==%d", label);
2caed564 21 h = its_hits("fX:fY:fZ", form, cont);
84aff7a4 22 if (h) h->SetMarkerSize(1);
5a5a1232 23
84aff7a4 24 TEveUtil::LoadMacro("tpc_hits.C");
7be1e8cd 25 sprintf(form,"TPC2.fArray.fTrackID==%d", label);
2caed564 26 h = tpc_hits("TPC2.fArray.fR:TPC2.fArray.fFi:TPC2.fArray.fZ",form, cont);
7be1e8cd 27 //PH h = tpc_hits("TPC2.fArray.fR:TPC2.fArray.fFi:TPC2.fArray.fZ",
28 //PH Form("TPC2.fArray.fTrackID==%d", label));
84aff7a4 29 if (h) h->SetMarkerSize(1);
5a5a1232 30
84aff7a4 31 TEveUtil::LoadMacro("trd_hits.C");
e131b7dc 32 sprintf(form,"TRD.fTrack==%d", label);
2caed564 33 h = trd_hits("fX:fY:fZ", form, cont);
84aff7a4 34 if (h) h->SetMarkerSize(1);
e131b7dc 35
84aff7a4 36 TEveUtil::LoadMacro("tof_hits.C");
788b9a31 37 sprintf(form,"TOF.fTrack==%d", label);
2caed564 38 h = tof_hits("fX:fY:fZ", form, cont);
84aff7a4 39 if (h) h->SetMarkerSize(1);
788b9a31 40
84aff7a4 41 gEve->Redraw3D();
5a5a1232 42}