]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_pmd.C
New detector AD
[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 **************************************************************************/
6c49a8e1 9
ba978640 10#if !defined(__CINT__) || defined(__MAKECINT__)
11#include <TGeoManager.h>
12#include <TEveManager.h>
13#include <TEveGeoNode.h>
290113e6 14
15#include <AliEveEventManager.h>
ba978640 16#endif
a8600b56 17
18void geom_pmd()
19{
290113e6 20 AliEveEventManager::AssertGeometry();
a8600b56 21
22 for(Int_t i=1; i<=4; ++i) {
7be1e8cd 23 //PH The line below is replaced waiting for a fix in Root
24 //PH which permits to use variable siza arguments in CINT
25 //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
26 //PH TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(Form("EPM%d_1", i));
27 char form[1000];
28 sprintf(form,"EPM%d_1", i);
29 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(form);
a8600b56 30
84aff7a4 31 TEveGeoTopNode* re = new TEveGeoTopNode(gGeoManager, node);
9a5c8f9c 32 re->UseNodeTrans();
84aff7a4 33 gEve->AddGlobalElement(re);
a8600b56 34 }
35
84aff7a4 36 gEve->Redraw3D();
a8600b56 37}