]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/geom_rich.C
Changed default point-size in accordance with the new convention.
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_rich.C
1 // $Id$
2
3 void geom_rich()
4 {
5   using namespace std;
6
7   gGeoManager = gReve->GetGeometry("$REVESYS/alice-data/alice_fullgeo.root");
8
9   for(Int_t i=1; i<=7; ++i) {
10     TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(Form("RICH_%d", i));
11
12     Reve::GeoTopNodeRnrEl* re = new Reve::GeoTopNodeRnrEl(gGeoManager, node);
13     re->SetUseNodeTrans(kTRUE);
14     gReve->AddGlobalRenderElement(re);
15   }
16
17   gReve->Redraw3D();
18 }