Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:01:36

0001 // Author: Matevz Tadel
0002 // Shows some muon chamber nodes in global coordinate system.
0003 
0004 #include "common_foos.C"
0005 
0006 void geom_detail_global()
0007 {
0008    TEveUtil::LoadMacro("common_foos.C+");
0009    std_init();
0010 
0011    make_node("/cms:World_1/cms:CMSE_1/muonBase:MUON_1/muonBase:MB_1/muonBase:MBWheel_1N_2/mb1:MB1N_10",
0012          4, kTRUE);
0013 
0014    make_node("/cms:World_1/cms:CMSE_1/muonBase:MUON_1/muonBase:MB_1/muonBase:MBWheel_1N_2/mb2:MB2N32N_10",
0015          4, kTRUE);
0016 
0017    make_node("/cms:World_1/cms:CMSE_1/muonBase:MUON_1/muonBase:MB_1/muonBase:MBWheel_1N_2/muonYoke:YB1_w1N_m6_10",
0018          4, kTRUE);
0019 
0020    gEve->FullRedraw3D(kTRUE);
0021 }