]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/geom_tpc.C
Changed default point-size in accordance with the new convention.
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_tpc.C
CommitLineData
5a5a1232 1// $Id$
2
3void geom_tpc()
4{
5 using namespace std;
6
7 gGeoManager = gReve->GetGeometry("$REVESYS/alice-data/alice_fullgeo.root");
8 TGeoNode* node = gGeoManager->GetTopVolume()->FindNode("TPC_M_1");
9
10 Reve::GeoTopNodeRnrEl* tpc_re =
11 new Reve::GeoTopNodeRnrEl(gGeoManager, node);
12 gReve->AddGlobalRenderElement(tpc_re);
5b96ea20 13 gReve->Redraw3D();
5a5a1232 14}