]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/geom_gentle_trd.C
update installed geometry for TRD
[u/mrichter/AliRoot.git] / EVE / alice-macros / geom_gentle_trd.C
index efbe1bfcc2e313e1d328628f7aac2c4c82a0fa4f..b59ab315075197df77affe505d9b77c7c0a17454 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: geom_gentle.C 24242 2008-03-02 02:23:52Z mtadel $
+// $Id$
 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
 
 /**************************************************************************
@@ -9,12 +9,15 @@
 
 TEveGeoShape* geom_gentle_trd()
 {
-  TFile f("$REVESYS/alice-data/gentle_geo_trd.root");
+  TFile f("$ALICE_ROOT/EVE/alice-data/gentle_geo_trd.root");
   TEveGeoShapeExtract* gse = (TEveGeoShapeExtract*) f.Get("Gentle TRD");
   TEveGeoShape* gsre = TEveGeoShape::ImportShapeExtract(gse);
   gEve->AddGlobalElement(gsre);
   f.Close();
 
+  const Int_t smInstalled[]={0, 1, 7, 8, 9, 10, 11, 15, 16, 17};
+  const Int_t nInstalled = static_cast<Int_t>(sizeof(smInstalled)/sizeof(Int_t));
+  Int_t sm = 0;
   // Fix visibility, color and transparency
   gsre->SetRnrSelf(kFALSE);
   for (TEveElement::List_i i = gsre->BeginChildren(); i != gsre->EndChildren(); ++i)
@@ -24,11 +27,18 @@ TEveGeoShape* geom_gentle_trd()
     for (TEveElement::List_i j = lvl1->BeginChildren(); j != lvl1->EndChildren(); ++j)
     {
       TEveGeoShape* lvl2 = (TEveGeoShape*) *j;
-      lvl2->SetRnrSelf(kTRUE);
+      lvl2->SetRnrSelf(kFALSE);
+      for(Int_t ism(nInstalled); ism--;){
+        if ( sm == smInstalled[ism] ){
+          lvl2->SetRnrSelf(kTRUE);
+          break; 
+        }
+      }
       lvl2->SetMainColor(3);
       lvl2->SetMainTransparency(80);
+
+      ++sm;
     }
-    
   }
 
   return gsre;