]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EVE/alice-macros/geom_phos.C
Changed default point-size in accordance with the new convention.
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_phos.C
... / ...
CommitLineData
1// $Id$
2
3void geom_phos()
4{
5 using namespace std;
6
7 gGeoManager = gReve->GetGeometry("$REVESYS/alice-data/alice_fullgeo.root");
8
9 for(Int_t i=1; i<=5; ++i) {
10 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode(Form("PHOS_%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}