]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/geom_phos.C
fix minor bug: add task argument was not passed to tak
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_phos.C
1 // $Id$
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          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 #if !defined(__CINT__) || defined(__MAKECINT__)
11 #include <TGeoManager.h>
12 #include <TEveManager.h>
13 #include <TEveGeoNode.h>
14
15 #include <AliEveEventManager.h>
16 #endif
17
18 void geom_phos()
19 {
20   AliEveEventManager::AssertGeometry();
21
22   TEveElementList* list = new TEveElementList("PHOS");
23   gEve->AddGlobalElement(list);
24
25   for(Int_t i=1; i<=5; ++i) {
26     //PH The line below is replaced waiting for a fix in Root
27     //PH which permits to use variable siza arguments in CINT
28     //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
29     //PH TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(Form("PHOS_%d", i));
30     char form[1000];
31     sprintf(form,"PHOS_%d", i);
32     TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(form);
33
34     TEveGeoTopNode* re = new TEveGeoTopNode(gGeoManager, node);
35     re->UseNodeTrans();
36     gEve->AddGlobalElement(re, list);
37   }
38
39   gEve->Redraw3D();
40 }