From b867ddda3fcb0267d0c4ed18aea1672ab95e66a4 Mon Sep 17 00:00:00 2001 From: hristov Date: Thu, 23 Feb 2006 14:35:50 +0000 Subject: [PATCH] Correct response function in the clusterization (M.Ivanov) --- TRD/AliTRDclusterizerV1.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TRD/AliTRDclusterizerV1.cxx b/TRD/AliTRDclusterizerV1.cxx index 901544b4fa5..1f2613f0a16 100644 --- a/TRD/AliTRDclusterizerV1.cxx +++ b/TRD/AliTRDclusterizerV1.cxx @@ -485,7 +485,7 @@ Bool_t AliTRDclusterizerV1::MakeClusters() Double_t colSize = padPlane->GetColSize(col); Double_t rowSize = padPlane->GetRowSize(row); Double_t clusterPos[3]; - clusterPos[0] = padPlane->GetColPos(col) + (clusterPads[1]-0.5)*colSize; // MI change + clusterPos[0] = padPlane->GetColPos(col) - (clusterPads[1]+0.5)*colSize; // MI change clusterPos[1] = padPlane->GetRowPos(row) -0.5*rowSize; //MI change clusterPos[2] = CalcXposFromTimebin(clusterPads[2], vdrift); Double_t clusterSig[2]; -- 2.31.1