We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8483257 commit 2dddc15Copy full SHA for 2dddc15
PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx
@@ -610,10 +610,12 @@ struct HfTaskElectronWeakBoson {
610
continue;
611
registry.fill(HIST("hZptSpectrum"), zBoson.pt);
612
for (const auto& trackAss : selectedElectronsAss) {
613
- if (std::abs(trackAss.pt - zBoson.ptchild0) < ptMatch)
+ if (std::abs(trackAss.pt - zBoson.ptchild0) < ptMatch) {
614
615
- if (std::abs(trackAss.pt - zBoson.ptchild1) < ptMatch)
+ }
616
+ if (std::abs(trackAss.pt - zBoson.ptchild1) < ptMatch) {
617
618
619
// calculate Z-h correlation
620
double deltaPhi = RecoDecay::constrainAngle(trackAss.phi - zBoson.phi, -o2::constants::math::PIHalf);
621
registry.fill(HIST("hZHadronDphi"), zBoson.pt, deltaPhi);
0 commit comments