Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:46

0001 // Author: Matevz Tadel
0002 // Shows full CMS geometry.
0003 
0004 #include "common_foos.C"
0005 
0006 TEveGeoTopNode *g_cms_all = 0;
0007 
0008 void geom_cms()
0009 {
0010    TEveUtil::LoadMacro("common_foos.C+");
0011    std_init();
0012 
0013    g_cms_all = make_node("/cms:World_1/cms:CMSE_1", 4, kTRUE);
0014 
0015    gEve->FullRedraw3D(kTRUE);
0016 
0017    std_camera_clip();
0018 }