From 832114ad4788929b44839e94e2cc4803ba2c227f Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Mon, 19 Jan 2026 15:08:11 +0000 Subject: [PATCH] Please consider the following formatting changes --- ALICE3/TableProducer/alice3HfSelector3Prong.cxx | 2 +- ALICE3/Tasks/alice3HfTask3Prong.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ALICE3/TableProducer/alice3HfSelector3Prong.cxx b/ALICE3/TableProducer/alice3HfSelector3Prong.cxx index 5a9c517c3b6..d075b56b0c9 100644 --- a/ALICE3/TableProducer/alice3HfSelector3Prong.cxx +++ b/ALICE3/TableProducer/alice3HfSelector3Prong.cxx @@ -315,7 +315,7 @@ struct Alice3HfSelector3Prong { { std::vector outputMl{-1.f, -1.f, -1.f}; uint32_t pidMask = 0; - + // looping over 3-prong cands for (const auto& cand : cands) { registry.fill(HIST("hSelections"), 1, cand.pt()); diff --git a/ALICE3/Tasks/alice3HfTask3Prong.cxx b/ALICE3/Tasks/alice3HfTask3Prong.cxx index a5cdae3b36e..388faa68d18 100644 --- a/ALICE3/Tasks/alice3HfTask3Prong.cxx +++ b/ALICE3/Tasks/alice3HfTask3Prong.cxx @@ -111,7 +111,7 @@ struct Alice3HfTask3Prong { auto addHistogramsRec = [&](const std::string& histoName, const std::string& xAxisTitle, const std::string& yAxisTitle, const HistogramConfigSpec& configSpec) { const char* basePath = "MC/rec"; - registry.add(Form("%s/signal/%sRecSig%s",basePath, histoName.c_str(), SignalSuffixes[SignalClasses::Signal].data()), ("3-prong cands (matched);" + xAxisTitle + ";" + yAxisTitle).c_str(), configSpec); + registry.add(Form("%s/signal/%sRecSig%s", basePath, histoName.c_str(), SignalSuffixes[SignalClasses::Signal].data()), ("3-prong cands (matched);" + xAxisTitle + ";" + yAxisTitle).c_str(), configSpec); registry.add(Form("%s/prompt/%sRecSig%s", basePath, histoName.c_str(), SignalSuffixes[SignalClasses::Prompt].data()), ("3-prong cands (matched, prompt);" + xAxisTitle + ";" + yAxisTitle).c_str(), configSpec); registry.add(Form("%s/nonprompt/%sRecSig%s", basePath, histoName.c_str(), SignalSuffixes[SignalClasses::NonPrompt].data()), ("3-prong cands (matched, non-prompt);" + xAxisTitle + ";" + yAxisTitle).c_str(), configSpec); registry.add(Form("%s/background/%sRecSig%s", basePath, histoName.c_str(), SignalSuffixes[SignalClasses::Bkg].data()), ("3-prong cands (unmatched);" + xAxisTitle + ";" + yAxisTitle).c_str(), configSpec);