]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/geom_pmd.C
Coverity
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_pmd.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 void geom_pmd()
11 {
12   gGeoManager = gEve->GetDefaultGeometry();
13
14   for(Int_t i=1; i<=4; ++i) {
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);
22
23     TEveGeoTopNode* re = new TEveGeoTopNode(gGeoManager, node);
24     re->UseNodeTrans();
25     gEve->AddGlobalElement(re);
26   }
27
28   gEve->Redraw3D();
29 }