]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_pmd.C
From Jochen - EveHLT development accumulated since the end of March.
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_pmd.C
CommitLineData
a8600b56 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 **************************************************************************/
a8600b56 9
10void geom_pmd()
11{
81515106 12 gGeoManager = gEve->GetDefaultGeometry();
a8600b56 13
14 for(Int_t i=1; i<=4; ++i) {
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 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(Form("EPM%d_1", i));
19 char form[1000];
20 sprintf(form,"EPM%d_1", i);
21 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(form);
a8600b56 22
84aff7a4 23 TEveGeoTopNode* re = new TEveGeoTopNode(gGeoManager, node);
9a5c8f9c 24 re->UseNodeTrans();
84aff7a4 25 gEve->AddGlobalElement(re);
a8600b56 26 }
27
84aff7a4 28 gEve->Redraw3D();
a8600b56 29}