Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // Shows CMS tracker and PLT
0002 // Depth can be set for each part independently.
0003 
0004 #include "common_foos.C"
0005 
0006 void geom_plt()
0007 {
0008    TEveUtil::LoadMacro("common_foos.C+");
0009    std_init();
0010 
0011    TEveGeoTopNode *plt1, *plt2;
0012 
0013    make_node("/cms:World_1/cms:CMSE_1/tracker:Tracker_1", 4, kTRUE);
0014    plt1 = make_node("/cms:World_1/cms:CMSE_1/forward:PLT_1", 4, kTRUE);
0015    plt2 = make_node("/cms:World_1/cms:CMSE_1/forward:PLT_2", 4, kTRUE);
0016 
0017    plt1->SetMainColor(kRed);
0018    plt1->SetMainTransparency(0);
0019 
0020    gEve->FullRedraw3D(kTRUE);
0021 
0022    std_camera_clip();
0023 }