Skip to content

Commit d0ce0a1

Browse files
authored
[PWGEM/Dilepton] quick fix after #16649 (#16650)
1 parent 0b1fe89 commit d0ce0a1

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

PWGEM/Dilepton/Core/DileptonSVMC.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1699,8 +1699,10 @@ struct DileptonSVMC {
16991699
}
17001700
// LOGF(info, "t1.sign() = %d, t2.sign() = %d, map_weight[std::make_pair(%d, %d)] = %f", t1.sign(), t2.sign(), t1.globalIndex(), t2.globalIndex(), weight);
17011701

1702-
ROOT::Math::PtEtaPhiMVector v1(t1.pt(), t1.eta(), t1.phi(), leptonM1);
1703-
ROOT::Math::PtEtaPhiMVector v2(t2.pt(), t2.eta(), t2.phi(), leptonM2);
1702+
// ROOT::Math::PtEtaPhiMVector v1(t1.pt(), t1.eta(), t1.phi(), leptonM1);
1703+
// ROOT::Math::PtEtaPhiMVector v2(t2.pt(), t2.eta(), t2.phi(), leptonM2);
1704+
ROOT::Math::PtEtaPhiMVector v1(candidate.pt1, candidate.eta1, candidate.phi1, leptonM1);
1705+
ROOT::Math::PtEtaPhiMVector v2(candidate.pt2, candidate.eta2, candidate.phi2, leptonM2);
17041706
ROOT::Math::PtEtaPhiMVector v12 = v1 + v2;
17051707

17061708
float pair_dca = 999.f;

0 commit comments

Comments
 (0)