From 87c17b7b29bd3bb07a8c307472ea7f5cc427bdeb Mon Sep 17 00:00:00 2001 From: schutz Date: Tue, 8 Jan 2002 08:02:00 +0000 Subject: [PATCH] Bug corrected in the implementation of the operator == --- EMCAL/AliEMCALHit.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EMCAL/AliEMCALHit.cxx b/EMCAL/AliEMCALHit.cxx index 1003cd72dc7..6d724d31148 100644 --- a/EMCAL/AliEMCALHit.cxx +++ b/EMCAL/AliEMCALHit.cxx @@ -101,7 +101,7 @@ Bool_t AliEMCALHit::operator==(AliEMCALHit const &rValue) const{ // from the same enterring Particle Bool_t rv = kFALSE; - if ( (fId == rValue.GetId()) && ( fPrimary == rValue.GetIparent()) ) + if ( (fId == rValue.GetId()) && ( fIparent == rValue.GetIparent()) ) rv = kTRUE; return rv; -- 2.39.3