]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
renamed local constants, added arguments name in method declarations
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 17 Jul 2000 07:11:15 +0000 (07:11 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 17 Jul 2000 07:11:15 +0000 (07:11 +0000)
TGeant4/TG4StepManager.cxx

index cff250d8cf0d2acc5ff6b8b446aaf890a553b5c5..b9c0ae4e4e7f9f7789f1af5edeeaa97d2d4d3dfa 100644 (file)
@@ -123,12 +123,12 @@ void TG4StepManager::Rndm(Float_t* array, const Int_t size) const
 // Random numbers array of the specified size.
 // ---
 
-  G4double* const doubleArray = new G4double[size];
-  RandFlat::shootArray(size,doubleArray);
+  G4double* const kpDoubleArray = new G4double[size];
+  RandFlat::shootArray(size,kpDoubleArray);
   for (G4int i=0; i<size; i++) { 
-    array[i] = doubleArray[i]; 
+    array[i] = kpDoubleArray[i]; 
   } 
-  delete [] doubleArray;
+  delete [] kpDoubleArray;
 }
  
 void TG4StepManager::SetMaxStep(Float_t step)
@@ -165,7 +165,7 @@ void TG4StepManager::SetMaxNStep(Int_t maxNofSteps)
     "TG4StepManager::SetMaxNStep(..) is not yet implemented.");
 }
 
-void TG4StepManager::SetUserDecay(Int_t)
+void TG4StepManager::SetUserDecay(Int_t pdg)
 {
 // Not yet implemented.
 // ---