]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/UPGRADE/AliITSULoader.cxx
Switching to the TDR naming schema (I cross my fingers)
[u/mrichter/AliRoot.git] / ITS / UPGRADE / AliITSULoader.cxx
index 730a1f6ef37d346ee89097b144eb8cbcd974a075..37879e63ca4f850115d740e247102b5004306ba2 100644 (file)
@@ -250,23 +250,23 @@ void AliITSULoader::SetupDigits(TObjArray *digPerDet,Int_t n,
     } // end for i
 }
 //---------------------------------------------------------------------
-AliITSdigit * AliITSULoader::GetDigit(TObjArray *digPerDet,Int_t module,
+AliITSdigit * AliITSULoader::GetDigit(TObjArray *digPerDet,Int_t chip,
                                        Int_t digit){
-    // Gets the digit for for a specific detector type and module.
+    // Gets the digit for for a specific detector type and chip.
     // To be used in conjustion with Setupdigits(AliITS *its).
     // Inputs:
     //   TObjArray *digPereDet    Pointer to the Array of digits
-    //   Int_t      module        Module number
+    //   Int_t      chip        Chip number
     //   Int_t      digit         Digit number
     // Outputs:
     //   none.
     // Return:
     //   returns the pointer to the digit. if zero then last digit for that
-    //   module.
+    //   chip.
 
     if(digPerDet==0){
-        Error("GetDigit","digPerDet=%p, module=%d, digit=%d",
-              digPerDet,module,digit);
+        Error("GetDigit","digPerDet=%p, chip=%d, digit=%d",
+              digPerDet,chip,digit);
         return 0;
     } // end if
     return 0;