From: ivana Date: Tue, 29 Jan 2008 10:58:13 +0000 (+0000) Subject: Coding conventions correction X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=41992c50e817771e0b3a702049f91a651e502736 Coding conventions correction --- diff --git a/MUON/AliMUONTrackerData.cxx b/MUON/AliMUONTrackerData.cxx index beff1673fc8..898ae37e301 100644 --- a/MUON/AliMUONTrackerData.cxx +++ b/MUON/AliMUONTrackerData.cxx @@ -779,11 +779,11 @@ AliMUONTrackerData::Value(const AliMUONVCalibParam& param, Int_t i, Int_t dim) c } else { - Double_t N = occ; + Double_t n = occ; - Double_t mean = param.ValueAsDouble(i,dim-1)/N; + Double_t mean = param.ValueAsDouble(i,dim-1)/n; - return TMath::Sqrt(TMath::Abs((value-N*mean*mean)/(N-1.0))); + return TMath::Sqrt(TMath::Abs((value-n*mean*mean)/(n-1.0))); } AliError("Why am I here ?");