From c893bd5562d7c65c999c087786597e1575c2fa20 Mon Sep 17 00:00:00 2001 From: Marvin Hemmer Date: Tue, 4 Aug 2026 09:13:15 +0200 Subject: [PATCH] [PWGEM] taskPi0FlowEMC: fix type missmatch for partioning --- PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx b/PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx index af98c86de85..f882510c241 100644 --- a/PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx +++ b/PWGEM/PhotonMeson/Tasks/taskPi0FlowEMC.cxx @@ -264,8 +264,8 @@ struct TaskPi0FlowEMC { using CollsWithQvecs = soa::Join; using Colls = soa::Join; - Partition emcalPhotons = aod::mincluster::storedPhi < std::lround(MaxPhiEMCal * emcdownscaling::downscalingFactors[emcdownscaling::kPhi]); - Partition dcalPhotons = aod::mincluster::storedPhi >= std::lround(MaxPhiEMCal * emcdownscaling::downscalingFactors[emcdownscaling::kPhi]); + Partition emcalPhotons = aod::mincluster::storedPhi < static_cast(std::lround(MaxPhiEMCal * emcdownscaling::downscalingFactors[emcdownscaling::kPhi])); + Partition dcalPhotons = aod::mincluster::storedPhi >= static_cast(std::lround(MaxPhiEMCal * emcdownscaling::downscalingFactors[emcdownscaling::kPhi])); static constexpr std::size_t NQVecEntries = 6;