]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_fmd.C
Adding ALICE specific implementations of Eve
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_fmd.C
CommitLineData
197639c0 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 **************************************************************************/
197639c0 9
ba978640 10#if !defined(__CINT__) || defined(__MAKECINT__)
11#include <TGeoManager.h>
12#include <TGeoNode.h>
13#include <TEveManager.h>
14#include <TEveGeoNode.h>
15#include <TEveElement.h>
16
6c49a8e1 17#include <AliEveEventManager.h>
ba978640 18#endif
19
197639c0 20void geom_fmd()
21{
ca8a6926 22 gGeoManager = AliEveEventManager::AssertGeometry();
197639c0 23
84aff7a4 24 TEveElementList* list = new TEveElementList("FMD");
25 gEve->AddGlobalElement(list);
197639c0 26
84aff7a4 27 for(Int_t i=1; i<=3; ++i)
28 {
29 TGeoNode *node = 0;
30 TEveGeoTopNode *re = 0;
197639c0 31
7be1e8cd 32 //PH The line below is replaced waiting for a fix in Root
33 //PH which permits to use variable siza arguments in CINT
34 //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
35 //PH node = gGeoManager->GetTopVolume()->FindNode(Form("F%dMT_%d", i, i));
36 char form[1000];
37 sprintf(form,"F%dMT_%d", i, i);
38 node = gGeoManager->GetTopVolume()->FindNode(form);
84aff7a4 39 re = new TEveGeoTopNode(gGeoManager, node);
9a5c8f9c 40 re->UseNodeTrans();
84aff7a4 41 gEve->AddGlobalElement(re, list);
197639c0 42
7be1e8cd 43 sprintf(form,"F%dMB_%d", i, i);
44 node = gGeoManager->GetTopVolume()->FindNode(form);
84aff7a4 45 re = new TEveGeoTopNode(gGeoManager, node);
9a5c8f9c 46 re->UseNodeTrans();
84aff7a4 47 gEve->AddGlobalElement(re, list);
197639c0 48 }
49
84aff7a4 50 gEve->Redraw3D();
197639c0 51}