]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Bug corrected in the implementation of the operator ==
authorschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 8 Jan 2002 08:02:00 +0000 (08:02 +0000)
committerschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 8 Jan 2002 08:02:00 +0000 (08:02 +0000)
EMCAL/AliEMCALHit.cxx

index 1003cd72dc77cc16cc4668651ac5b2f135f1317b..6d724d31148504a31b96a4e84d3cf413d6f83a48 100644 (file)
@@ -101,7 +101,7 @@ Bool_t AliEMCALHit::operator==(AliEMCALHit const &rValue) const{
     // from the same enterring Particle 
     Bool_t rv = kFALSE;
 
     // 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;
        rv = kTRUE;
 
     return rv;