From 4682ffeebbee93a636ab7543cae2c17127fac38c Mon Sep 17 00:00:00 2001 From: cvetan Date: Thu, 14 Jan 2010 10:58:29 +0000 Subject: [PATCH] Fix for bug# 61113. The digits are stored now in units of ns. --- VZERO/AliVZERODigitizer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VZERO/AliVZERODigitizer.cxx b/VZERO/AliVZERODigitizer.cxx index 955326914ff..2a857b59066 100644 --- a/VZERO/AliVZERODigitizer.cxx +++ b/VZERO/AliVZERODigitizer.cxx @@ -301,7 +301,7 @@ void AliVZERODigitizer::Exec(Option_t* /*option*/) // outRunLoader->GetEventNumber(),i, adc[i], Int_t((time2[i]*10.0) +0.5)); // multiply by 10 to have 100 ps per channel : - AddDigit(i, adc[i], (time2[i]*10.0) ) ; + AddDigit(i, adc[i], time2[i] ) ; } } treeD->Fill(); -- 2.43.0