]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_acorde.C
Put black-listed classes out of Alieve namespace.
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_acorde.C
CommitLineData
41e87e2b 1// $Id$
2
3void geom_acorde()
4{
84aff7a4 5 gGeoManager = gEve->GetGeometry("geometry.root");
41e87e2b 6
84aff7a4 7 TEveElementList* list = new TEveElementList("ACORDE");
8 gEve->AddGlobalElement(list);
41e87e2b 9
84aff7a4 10 for (Int_t i=1; i<61; ++i)
11 {
12 char form[1000];
41e87e2b 13 sprintf(form, "ACORDE1_%d", i);
84aff7a4 14 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(form);
15 TEveGeoTopNode* re = new TEveGeoTopNode(gGeoManager, node);
41e87e2b 16 re->UseNodeTrans();
84aff7a4 17 gEve->AddGlobalElement(re, list);
41e87e2b 18 }
84aff7a4 19
20 gEve->Redraw3D();
41e87e2b 21}