]> git.uio.no Git - u/mrichter/AliRoot.git/blame - 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
8085068a 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
5b96ea20 12 Reve::GeoTopNodeRnrEl* re = new Reve::GeoTopNodeRnrEl(gGeoManager, node);
13 re->SetUseNodeTrans(kTRUE);
8085068a 14 gReve->AddGlobalRenderElement(re);
8085068a 15 }
5b96ea20 16
17 gReve->Redraw3D();
8085068a 18}