]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/emcal_hits.C
Remove trailing whitespace.
[u/mrichter/AliRoot.git] / EVE / alice-macros / emcal_hits.C
CommitLineData
38fb31ba 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 **************************************************************************/
38fb31ba 9
84aff7a4 10TEvePointSet*
38fb31ba 11emcal_hits(const char *varexp = "fX:fY:fZ",
12 const char *selection = "",
84aff7a4 13 TEveElement* cont = 0)
38fb31ba 14{
d810d0de 15 AliRunLoader* rl = AliEveEventManager::AssertRunLoader();
38fb31ba 16 rl->LoadHits("EMCAL");
17
18 TTree* ht = rl->GetTreeH("EMCAL", false);
51346b82 19
38fb31ba 20 //PH The line below is replaced waiting for a fix in Root
21 //PH which permits to use variable siza arguments in CINT
22 //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
84aff7a4 23 //PH TEvePointSet* points = new TEvePointSet(Form("EMCAL Hits '%s'", selection));
38fb31ba 24 char form[1000];
25 sprintf(form,"EMCAL Hits '%s'", selection);
84aff7a4 26 TEvePointSet* points = new TEvePointSet(form);
38fb31ba 27
84aff7a4 28 TEvePointSelector ps(ht, points, varexp, selection);
38fb31ba 29 ps.Select();
30
84aff7a4 31 if (points->Size() == 0 && gEve->GetKeepEmptyCont() == kFALSE) {
38fb31ba 32 Warning("emcal_hits", Form("No hits match '%s'", selection));
33 delete points;
34 return 0;
35 }
36
37 //PH points->SetTitle(Form("N=%d", points->Size()));
38 sprintf(form,"N=%d", points->Size());
39 points->SetTitle(form);
40 points->SetMarkerSize(.5);
41 points->SetMarkerColor((Color_t)2);
42
84aff7a4 43 gEve->AddElement(points, cont);
44 gEve->Redraw3D();
38fb31ba 45
46 return points;
47}