From: cvetan Date: Thu, 14 Jan 2010 10:58:29 +0000 (+0000) Subject: Fix for bug# 61113. The digits are stored now in units of ns. X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=4682ffeebbee93a636ab7543cae2c17127fac38c;p=u%2Fmrichter%2FAliRoot.git Fix for bug# 61113. The digits are stored now in units of ns. --- 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();