Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
geom_cms.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_eve
3/// Shows CMS geometry.
4///
5/// \image html eve_geom_cms.png
6/// \macro_code
7///
8/// \author Matevz Tadel
9
10void geom_cms()
11{
13
15 gGeoManager = gEve->GetGeometry("http://root.cern/files/cms.root");
16 gGeoManager->DefaultColors();
17
18 auto top = gGeoManager->GetTopVolume()->FindNode("CMSE_1")->GetVolume();
19
20 TEveGeoTopNode *trk = new TEveGeoTopNode(gGeoManager, top->FindNode("TRAK_1"));
21 trk->SetVisLevel(6);
22 gEve->AddGlobalElement(trk);
23
24 auto calo = new TEveGeoTopNode(gGeoManager, top->FindNode("CALO_1"));
25 calo->SetVisLevel(3);
26 gEve->AddGlobalElement(calo);
27
28 auto muon = new TEveGeoTopNode(gGeoManager, top->FindNode("MUON_1"));
29 muon->SetVisLevel(4);
30 gEve->AddGlobalElement(muon);
31
32 gEve->FullRedraw3D(kTRUE);
33
34 // EClipType not exported to CINT (see TGLUtil.h):
35 // 0 - no clip, 1 - clip plane, 2 - clip box
36 auto v = gEve->GetDefaultGLViewer();
37 v->GetClipSet()->SetClipType(TGLClip::EType(1));
38 v->ColorSet().Background().SetColor(kMagenta + 4);
39 v->SetGuideState(TGLUtil::kAxesEdge, kTRUE, kFALSE, 0);
40 v->RefreshPadEditor(v);
41
42 v->CurrentCamera().RotateRad(-1.2, 0.5);
43 v->DoDraw();
44}
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
constexpr Bool_t kTRUE
Definition RtypesCore.h:107
@ kMagenta
Definition Rtypes.h:67
externTEveManager * gEve
externTGeoManager * gGeoManager
A wrapper over a TGeoNode, possibly displaced with a global trasformation stored in TEveElement.
Definition TEveGeoNode.h:90
void SetVisLevel(Int_t vl)
static TEveManager * Create(Bool_t map_window=kTRUE, Option_t *opt="FIV")
If global TEveManager* gEve is not set initialize it.
static Bool_t SetCacheFileDir(std::string_view cacheDir, Bool_t operateDisconnected=kTRUE, Bool_t forceCacheread=kFALSE)
Sets the directory where to locally stage/cache remote files.
Definition TFile.cxx:4328
@ kAxesEdge
Definition TGLUtil.h:952
void geom_cms()
Definition geom_cms.C:89