From 46fbcf923d2c3115273e13bb7a0bc19b01a115f9 Mon Sep 17 00:00:00 2001 From: Luca Micheletti Date: Sat, 28 Aug 2021 19:35:04 +0200 Subject: [PATCH] Fixing issue with Jpsi Task --- Tasks/PWGHF/taskJpsi.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tasks/PWGHF/taskJpsi.cxx b/Tasks/PWGHF/taskJpsi.cxx index 7b1a8070f05..53b54db6e6b 100644 --- a/Tasks/PWGHF/taskJpsi.cxx +++ b/Tasks/PWGHF/taskJpsi.cxx @@ -249,8 +249,8 @@ struct TaskJpsiMC { registry.fill(HIST("hPtGen"), particle.pt()); registry.fill(HIST("hEtaGen"), particle.eta()); registry.fill(HIST("hYGen"), RecoDecay::Y(array{particle.px(), particle.py(), particle.pz()}, RecoDecay::getMassPDG(particle.pdgCode())), particle.pt()); - registry.fill(HIST("hPtGenProng0"), particle.daughter0_as().pt(), particle.pt()); - registry.fill(HIST("hPtGenProng1"), particle.daughter1_as().pt(), particle.pt()); + //registry.fill(HIST("hPtGenProng0"), particle.daughter0_as().pt(), particle.pt()); + //registry.fill(HIST("hPtGenProng1"), particle.daughter1_as().pt(), particle.pt()); } } }