Logo ROOT   6.18/05
Reference Guide
geom_alias.C File Reference

Detailed Description

Demonstrates usage of geometry aliases - merge ALICE ITS with ATLAS MUON.

void geom_alias()
{
gEve->RegisterGeometryAlias("ALICE", "http://root.cern.ch/files/alice.root");
gEve->RegisterGeometryAlias("ATLAS", "http://root.cern.ch/files/atlas.root");
auto node1 = gGeoManager->GetTopVolume()->FindNode("ITSV_1");
auto its = new TEveGeoTopNode(gGeoManager, node1);
auto node2 = gGeoManager->GetTopVolume()->FindNode("OUTE_1");
auto atlas = new TEveGeoTopNode(gGeoManager, node2);
// EClipType not exported to CINT (see TGLUtil.h):
// 0 - no clip, 1 - clip plane, 2 - clip box
v->GetClipSet()->SetClipType(TGLClip::EType(2));
v->RefreshPadEditor(v);
v->CurrentCamera().RotateRad(-0.5, -2.4);
v->DoDraw();
}
SVector< double, 2 > v
Definition: Dict.h:5
const Bool_t kTRUE
Definition: RtypesCore.h:87
R__EXTERN TEveManager * gEve
Definition: TEveManager.h:243
R__EXTERN TGeoManager * gGeoManager
Definition: TGeoManager.h:601
A wrapper over a TGeoNode, possibly displaced with a global trasformation stored in TEveElement.
Definition: TEveGeoNode.h:93
void AddGlobalElement(TEveElement *element, TEveElement *parent=0)
Add a global element, i.e.
TGeoManager * GetGeometryByAlias(const TString &alias)
Get geometry with given alias.
TGLViewer * GetDefaultGLViewer() const
Get TGLViewer of the default TEveViewer.
void RegisterGeometryAlias(const TString &alias, const TString &filename)
Register 'name' as an alias for geometry file 'filename'.
static TEveManager * Create(Bool_t map_window=kTRUE, Option_t *opt="FIV")
If global TEveManager* gEve is not set initialize it.
void FullRedraw3D(Bool_t resetCameras=kFALSE, Bool_t dropLogicals=kFALSE)
Perform 3D redraw of all scenes and viewers.
TGeoVolume * GetTopVolume() const
Definition: TGeoManager.h:531
TGeoNode * FindNode(const char *name) const
search a daughter inside the list of nodes
Author
Matevz Tadel

Definition in file geom_alias.C.