]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
fix coverity
authorrbailhac <Raphaelle.Bailhache@cern.ch>
Mon, 8 Sep 2014 08:14:05 +0000 (10:14 +0200)
committerrbailhac <Raphaelle.Bailhache@cern.ch>
Mon, 8 Sep 2014 08:14:05 +0000 (10:14 +0200)
PWGHF/hfe/AliHFEV0pid.cxx

index a0a945be4e2c9282c304e33f1dc0e88a0b16fc7c..7efcc9eeaca5826d1db3732f6f46be098ae7d18a 100644 (file)
@@ -767,9 +767,10 @@ void AliHFEV0pid::BenchmarkV0finder(){
     if(!esdV0) continue;
     if(!esdV0->GetOnFlyStatus()) continue; // Take only V0s from the On-the-fly v0 finder
     // indetify the V0 candidate
-    Int_t idV0 = AliHFEV0cuts::kUndef;
+    //Int_t idV0 = AliHFEV0cuts::kUndef;
     Int_t idD[2] = {-1, -1};
-    idV0 = IdentifyV0(esdV0, idD);
+    //idV0 = IdentifyV0(esdV0, idD);
+    IdentifyV0(esdV0, idD);
   }
 }
 //____________________________________________________________