From 945a058a737b9957edf4f1d075f563fcfdb3dcf5 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 26 Nov 2024 14:13:32 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/Tasks/Nuspex/he3FromHypertritonMap.cxx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/PWGLF/Tasks/Nuspex/he3FromHypertritonMap.cxx b/PWGLF/Tasks/Nuspex/he3FromHypertritonMap.cxx index 63c18de6891..5f1e68731d3 100644 --- a/PWGLF/Tasks/Nuspex/he3FromHypertritonMap.cxx +++ b/PWGLF/Tasks/Nuspex/he3FromHypertritonMap.cxx @@ -54,7 +54,6 @@ struct he3FromHypertritonMap { true, true}; - // Track Parameters Configurable min_ITS_nClusters{"min_ITS_nClusters", 7, "minimum number of found ITS clusters"}; Configurable min_TPC_nClusters{"min_TPC_nClusters", 100, "minimum number of found TPC clusters"}; @@ -70,11 +69,11 @@ struct he3FromHypertritonMap { Configurable min_pt{"min_pt", 0.0f, "minimum pt of the tracks"}; Configurable max_pt{"max_pt", 10.0f, "maximum pt of the tracks"}; Configurable nbin_pt{"nbin_pt", 50, "number of pt bins"}; - Configurable nbin_dca={"nbin_dca", 50, "number of DCA bins"}; + Configurable nbin_dca = {"nbin_dca", 50, "number of DCA bins"}; int AntihePDG = -1000020030; int AntiHypertritonPDG = -1010010030; - int AntiHyperHelium4PDG= -1010020040; + int AntiHyperHelium4PDG = -1010020040; void init(InitContext const&) { @@ -109,14 +108,12 @@ struct he3FromHypertritonMap { track.itsChi2NCl() > 36.f) { continue; } - if(motherparticle.pdgCode() == AntiHypertritonPDG) - { - registryMC.fill(HIST("he3SecPtRec_from_hypertriton"), 2*track.pt()); + if (motherparticle.pdgCode() == AntiHypertritonPDG) { + registryMC.fill(HIST("he3SecPtRec_from_hypertriton"), 2 * track.pt()); registryMC.fill(HIST("hypertritonPtgen"), motherparticle.pt()); } - if(motherparticle.pdgCode() == AntiHyperHelium4PDG) - { - registryMC.fill(HIST("he3SecPtRec_from_hyperHe4"), 2*track.pt()); + if (motherparticle.pdgCode() == AntiHyperHelium4PDG) { + registryMC.fill(HIST("he3SecPtRec_from_hyperHe4"), 2 * track.pt()); registryMC.fill(HIST("hyperHe4Ptgen"), motherparticle.pt()); } }