From 8f826c9b6f4d16759bf03291387e940508ed0b1b Mon Sep 17 00:00:00 2001 From: Daiki Sekihata Date: Wed, 9 Jul 2025 10:50:00 +0200 Subject: [PATCH 1/4] PWGEM/Dilepton: fix bc in OTS --- PWGEM/Dilepton/TableProducer/skimmerOTS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx index 3ea6dc842d8..937511445a8 100644 --- a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx +++ b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx @@ -100,7 +100,7 @@ struct skimmerOTS { void process(MyCollisions const& collisions, MyBCs const&) { for (auto& collision : collisions) { - auto bc = collision.template foundBC_as(); + auto bc = collision.template bc_as(); //don't use foundBC. initCCDB(bc); uint16_t trigger_bitmap = 0; From 8e864678a99dd46524f7a661668181feaa42fab8 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 9 Jul 2025 08:51:00 +0000 Subject: [PATCH 2/4] Please consider the following formatting changes --- PWGEM/Dilepton/TableProducer/skimmerOTS.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx index 937511445a8..6b820309206 100644 --- a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx +++ b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx @@ -100,7 +100,7 @@ struct skimmerOTS { void process(MyCollisions const& collisions, MyBCs const&) { for (auto& collision : collisions) { - auto bc = collision.template bc_as(); //don't use foundBC. + auto bc = collision.template bc_as(); // don't use foundBC. initCCDB(bc); uint16_t trigger_bitmap = 0; From f265e37f65cce15067b4cad44ed50aa35f563f27 Mon Sep 17 00:00:00 2001 From: Daiki Sekihata Date: Wed, 9 Jul 2025 11:01:11 +0200 Subject: [PATCH 3/4] Update skimmerOTS.cxx --- PWGEM/Dilepton/TableProducer/skimmerOTS.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx index 6b820309206..3762bf13d62 100644 --- a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx +++ b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx @@ -14,6 +14,9 @@ // This code produces trigger information. OTS = offline trigger selection. // Please write to: daiki.sekihata@cern.ch +#include +#include + #include "Framework/runDataProcessing.h" #include "Framework/AnalysisTask.h" #include "Framework/AnalysisDataModel.h" From 9cff88f3970240c12e9a7d0b336b5a9eea3543c0 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 9 Jul 2025 09:01:46 +0000 Subject: [PATCH 4/4] Please consider the following formatting changes --- PWGEM/Dilepton/TableProducer/skimmerOTS.cxx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx index 3762bf13d62..997f8c4e6a5 100644 --- a/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx +++ b/PWGEM/Dilepton/TableProducer/skimmerOTS.cxx @@ -14,19 +14,19 @@ // This code produces trigger information. OTS = offline trigger selection. // Please write to: daiki.sekihata@cern.ch -#include -#include +#include "PWGEM/Dilepton/DataModel/dileptonTables.h" -#include "Framework/runDataProcessing.h" -#include "Framework/AnalysisTask.h" -#include "Framework/AnalysisDataModel.h" -#include "Framework/ASoAHelpers.h" +#include "Common/Core/TableHelper.h" +#include "EventFiltering/Zorro.h" #include "CCDB/BasicCCDBManager.h" -#include "EventFiltering/Zorro.h" -#include "Common/Core/TableHelper.h" +#include "Framework/ASoAHelpers.h" +#include "Framework/AnalysisDataModel.h" +#include "Framework/AnalysisTask.h" +#include "Framework/runDataProcessing.h" -#include "PWGEM/Dilepton/DataModel/dileptonTables.h" +#include +#include using namespace o2; using namespace o2::framework;