From 2d830acc27123beae5cb114b898f95f756fafa38 Mon Sep 17 00:00:00 2001 From: mtadel Date: Thu, 15 Jun 2006 14:47:34 +0000 Subject: [PATCH] Fixed a type in PadRowHack ctor (unused parameter). --- EVE/Alieve/TPCSectorData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EVE/Alieve/TPCSectorData.h b/EVE/Alieve/TPCSectorData.h index fea7e298ac2..7274ab02729 100644 --- a/EVE/Alieve/TPCSectorData.h +++ b/EVE/Alieve/TPCSectorData.h @@ -194,7 +194,7 @@ public: Float_t fThrFac; // Actual threshold = fThrExt + fThrFac*thr PadRowHack(Int_t r, Int_t p, Int_t te=0, Float_t tf=1) : - fRow(r), fPad(r), fThrExt(te), fThrFac(tf) {} + fRow(r), fPad(p), fThrExt(te), fThrFac(tf) {} bool operator<(const PadRowHack& a) const { return (fRow == a.fRow) ? fPad < a.fPad : fRow < a.fRow; } }; -- 2.43.0