]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/tof_digits.C
Coverity
[u/mrichter/AliRoot.git] / EVE / alice-macros / tof_digits.C
index faa516ad839446dfc05516e0a445f0e84c159de5..1e167e17bbc5c42ebdb3a33417715832328ffabc 100644 (file)
@@ -7,13 +7,12 @@
  * full copyright notice.                                                 *
  **************************************************************************/
 
+
 void tof_digits()
-{
+{  
   TClonesArray *array = 0x0;
 
-  Int_t nDigitsInVolume[3] = {-1, -1, -1};
-  Int_t nStrips=19;
-  TGeoManager *localGeoManager = (TGeoManager*)gEve->GetGeometry("./geometry.root");//"$REVESYS/alice-data/alice_fullgeo.root");
+  TGeoManager *localGeoManager = gEve->GetGeometry("./geometry.root");//  gGeoManager = gEve->GetDefaultGeometry();
   if (!localGeoManager) {
     printf("ERROR: no TGeo\n");
   }
@@ -27,20 +26,20 @@ void tof_digits()
   di->LoadDigits();
   di->Dump();
 
-  AliTOFGeometry* g = di->fGeom;
-
+  AliTOFGeometry* g = di->GetTOFgeometry();
   gStyle->SetPalette(1, 0);
   gEve->DisableRedraw();
 
   TEveElementList* ll = new TEveElementList("TOF");
   ll->SetTitle("TOF detector");
-  ll->SetMainColor((Color_t)2);
+  ll->SetMainColor(2);
   gEve->AddElement(ll);
 
   for(Int_t iSector=0; iSector<g->NSectors(); iSector++) {
-
+    
     array = di->GetDigits(iSector);
-
+   
     AliEveTOFSector* m = new AliEveTOFSector(localGeoManager,iSector,array);
 
     gEve->AddElement(m, ll);