]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Replace int by Int_t
authorcblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 4 Nov 2005 08:57:46 +0000 (08:57 +0000)
committercblume <cblume@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 4 Nov 2005 08:57:46 +0000 (08:57 +0000)
TRD/AliTRDrawData.cxx
TRD/AliTRDrecPoint.cxx

index 0f10e8994f4b483098da4d31e65e0b9d67e5105a..51653b42f81321bf29b21764335860986b1315bd 100644 (file)
@@ -112,7 +112,7 @@ Bool_t AliTRDrawData::Digits2Raw(TTree *digitsTree)
   const Int_t kNumberOfDDLs         = 18;
   const Int_t kSubeventHeaderLength = 8;
   const Int_t kSubeventDummyFlag    = 0xBB;
-  int headerSubevent[3];
+  Int_t       headerSubevent[3];
 
   ofstream      *outputFile[kNumberOfDDLs];
   UInt_t         bHPosition[kNumberOfDDLs];
@@ -165,7 +165,7 @@ Bool_t AliTRDrawData::Digits2Raw(TTree *digitsTree)
     Int_t colMax    = par->GetColMax(plan);
     Int_t timeTotal = par->GetTimeTotal();
     Int_t bufferMax = rowMax*colMax*timeTotal;
-    int  *buffer    = new int[bufferMax];
+    Int_t *buffer   = new Int_t[bufferMax];
 
     npads   = 0;
     nbyte   = 0;
index c5353e5fc7c38d6c01faadaee406e1310a41a29b..f9d367999aec4ba8f422c4cd6c195140ef1ec7e5 100644 (file)
@@ -81,7 +81,7 @@ void AliTRDrecPoint::AddDigit(Int_t digit)
   // Increase the size of the list if necessary
   if (fMulDigit >= fMaxDigit) { 
     fMaxDigit *= 2;
-    int *tempo = new int[fMaxDigit]; 
+    Int_t *tempo = new Int_t[fMaxDigit]; 
     Int_t index; 
     for (index = 0; index < fMulDigit; index++)
       tempo[index] = fDigitsList[index];