]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removal of absolute value for PDG of true pairs - bug fix
authorfbellini <fbellini@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 14 Oct 2012 16:22:31 +0000 (16:22 +0000)
committerfbellini <fbellini@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 14 Oct 2012 16:22:31 +0000 (16:22 +0000)
PWGLF/RESONANCES/AliRsnMiniOutput.cxx

index a139c6eec3a8d5fbec9e28e2c7917db33f237c8c..60c3d74b2fc97c5a18d25f1fd1c12e3ec94a6f58 100644 (file)
@@ -487,7 +487,7 @@ Int_t AliRsnMiniOutput::FillPair(AliRsnMiniEvent *event1, AliRsnMiniEvent *event
          if (fComputation == kTruePair) {
             if (fPair.Mother() < 0)  {
                continue;
-            } else if (TMath::Abs(fPair.MotherPDG()) != fMotherPDG) {
+            } else if (fPair.MotherPDG() != fMotherPDG) {
                continue;
             }
             Bool_t decayMatch = kFALSE;