]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing AliDebug calls to speed up the reconstruction
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Oct 2006 09:34:24 +0000 (09:34 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 17 Oct 2006 09:34:24 +0000 (09:34 +0000)
TRD/AliTRDcalibDB.cxx
TRD/AliTRDclusterizerV1.cxx

index ee96ceaf42099b31b4c263511e9b4a0696a27769..b724b66164302379156afdc37f8df07315494bf2 100644 (file)
@@ -271,8 +271,6 @@ AliCDBEntry *AliTRDcalibDB::GetCDBEntry(const char *cdbPath)
     return 0; 
   }
   
-  AliDebug(1,Form("AliTRDcalibDB: Retrieved object: %s",cdbPath));
-
   return entry;
 
 }
index 1ac744131dc20c70847279f8f17bfb8cc16bddfe..6f8f68f09fb2a7842ca81f3b1db7ee0b91d29cfa 100644 (file)
@@ -256,9 +256,6 @@ Bool_t AliTRDclusterizerV1::MakeClusters()
         AliTRDdataArrayI *tracksTmp = fDigitsManager->GetDictionary(idet,0);
         tracksTmp->Expand();
 
-        AliDebug(1,Form("Analyzing chamber %d, plane %d, sector %d.\n"
-                      ,icham,iplan,isect));
-
        Int_t nRowMax = commonParam->GetRowMax(iplan,icham,isect);
        Int_t nColMax = commonParam->GetColMax(iplan);
 
@@ -713,8 +710,6 @@ void AliTRDclusterizerV1::Transform(AliTRDdataArrayI *digitsIn
 
        // Store the amplitude of the digit if above threshold
        if (outADC[iTime] > ADCthreshold) {
-         AliDebug(2,Form("  iRow = %d, iCol = %d, iTime = %d, adc = %f\n"
-                        ,iRow,iCol,iTime,outADC[iTime]));
          digitsOut->SetDataUnchecked(iRow,iCol,iTime,outADC[iTime]);
        }