11 void show_extract(
const char* file=
"http://root.cern.ch/files/alice_ESDgeometry.root")
13 TEveManager::Create();
17 TIter next(gDirectory->GetListOfKeys());
19 TString xxx(
"TEveGeoShapeExtract");
21 while ((key = (TKey*) next()))
23 if (xxx == key->GetClassName())
25 auto gse = (TEveGeoShapeExtract*) key->ReadObj();
26 auto gs = TEveGeoShape::ImportShapeExtract(gse, 0);
27 gEve->AddGlobalElement(gs);
31 gEve->Redraw3D(kTRUE);