From 2e526cc3def67d8f9b9d5d414371bcda65cbaeec Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 26 May 2026 09:55:45 +0000 Subject: [PATCH] Please consider the following formatting changes --- .../Nuspex/coalescenceTreeProducer.cxx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/PWGLF/TableProducer/Nuspex/coalescenceTreeProducer.cxx b/PWGLF/TableProducer/Nuspex/coalescenceTreeProducer.cxx index 4643c00c2a5..f4f8a0078ec 100644 --- a/PWGLF/TableProducer/Nuspex/coalescenceTreeProducer.cxx +++ b/PWGLF/TableProducer/Nuspex/coalescenceTreeProducer.cxx @@ -28,22 +28,23 @@ /// /// \author Alberto CalivĂ  +#include "Common/DataModel/MCParticles.h" +#include "Common/DataModel/McCollisionExtra.h" + #include "Framework/AnalysisTask.h" -#include "Framework/runDataProcessing.h" #include "Framework/Configurable.h" #include "Framework/HistogramRegistry.h" #include "Framework/InitContext.h" #include "Framework/Logger.h" #include "Framework/OutputObjHeader.h" -#include "Common/DataModel/McCollisionExtra.h" -#include "Common/DataModel/MCParticles.h" +#include "Framework/runDataProcessing.h" #include #include #include +#include #include -#include #include #include #include @@ -74,8 +75,8 @@ struct CoalescenceTreeProducer { OutputObj treeBoundState{"treeBoundState"}; - int64_t eventID;// Event ID - int64_t idB1, idB2, idB3;// MC particle IDs of the constituent baryons + int64_t eventID; // Event ID + int64_t idB1, idB2, idB3; // MC particle IDs of the constituent baryons int pdgB1, pdgB2, pdgB3; int chargeB1, chargeB2, chargeB3; @@ -670,7 +671,5 @@ struct CoalescenceTreeProducer { WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) { return WorkflowSpec{ - adaptAnalysisTask(cfgc) - }; + adaptAnalysisTask(cfgc)}; } -