File indexing completed on 2024-04-06 12:11:46
0001
0002
0003
0004
0005 #include "common_foos.C"
0006
0007 TEveGeoTopNode *g_cms_tracker = 0;
0008 TEveGeoTopNode *g_cms_calo = 0;
0009 TEveGeoTopNode *g_cms_muon = 0;
0010
0011 void geom_core_parts()
0012 {
0013 TEveUtil::LoadMacro("common_foos.C+");
0014 std_init();
0015
0016 g_cms_tracker = make_node("/cms:World_1/cms:CMSE_1/tracker:Tracker_1", 4, kTRUE);
0017 g_cms_calo = make_node("/cms:World_1/cms:CMSE_1/caloBase:CALO_1", 4, kTRUE);
0018 g_cms_muon = make_node("/cms:World_1/cms:CMSE_1/muonBase:MUON_1", 4, kTRUE);
0019
0020 gEve->FullRedraw3D(kTRUE);
0021
0022 std_camera_clip();
0023 }