From dcd619edee985386481ff742500e8c05794f86dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Thu, 2 May 2024 11:28:16 +0200 Subject: [PATCH 1/3] Split tables for tiny and full tune on data --- Common/DataModel/PIDResponse.h | 1 + Common/TableProducer/PID/pidTPC.cxx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Common/DataModel/PIDResponse.h b/Common/DataModel/PIDResponse.h index 8d8c4374dbc..ab6a689449d 100644 --- a/Common/DataModel/PIDResponse.h +++ b/Common/DataModel/PIDResponse.h @@ -611,6 +611,7 @@ DECLARE_SOA_COLUMN(DeDxTunedMc, mcTunedTPCSignal, float); //! TPC signal after T } // namespace mcpidtpc DECLARE_SOA_TABLE(mcTPCTuneOnData, "AOD", "MCTPCTUNEONDATA", mcpidtpc::DeDxTunedMc); +DECLARE_SOA_TABLE(mcTPCTuneOnDataTiny, "AOD", "MCTPCTUNEONDATATINY", mcpidtpc::DeDxTunedMc, o2::soa::Mark<1>); namespace pidtpc { diff --git a/Common/TableProducer/PID/pidTPC.cxx b/Common/TableProducer/PID/pidTPC.cxx index 61ffaf42a05..c17d5bab98c 100644 --- a/Common/TableProducer/PID/pidTPC.cxx +++ b/Common/TableProducer/PID/pidTPC.cxx @@ -71,7 +71,7 @@ struct tpcPid { Produces tablePIDTr; Produces tablePIDHe; Produces tablePIDAl; - Produces tableTuneOnData; + Produces tableTuneOnData; // TPC PID Response o2::pid::tpc::Response* response; From f3021b4b12d9d55f7c74e3df4897d5415bc33705 Mon Sep 17 00:00:00 2001 From: Jan Fiete Date: Thu, 2 May 2024 17:16:33 +0200 Subject: [PATCH 2/3] fixup :) --- Common/DataModel/PIDResponse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/DataModel/PIDResponse.h b/Common/DataModel/PIDResponse.h index ab6a689449d..01d85b6f3db 100644 --- a/Common/DataModel/PIDResponse.h +++ b/Common/DataModel/PIDResponse.h @@ -611,7 +611,7 @@ DECLARE_SOA_COLUMN(DeDxTunedMc, mcTunedTPCSignal, float); //! TPC signal after T } // namespace mcpidtpc DECLARE_SOA_TABLE(mcTPCTuneOnData, "AOD", "MCTPCTUNEONDATA", mcpidtpc::DeDxTunedMc); -DECLARE_SOA_TABLE(mcTPCTuneOnDataTiny, "AOD", "MCTPCTUNEONDATATINY", mcpidtpc::DeDxTunedMc, o2::soa::Mark<1>); +DECLARE_SOA_TABLE(mcTPCTuneOnDataTiny, "AOD", "MCTPCTUNEONDATATINY", mcpidtpc::DeDxTunedMc, o2::soa::Marker<1>); namespace pidtpc { From b388040e8581790d70c3aac5e537c6130542efed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Thu, 2 May 2024 20:35:48 +0200 Subject: [PATCH 3/3] Update PIDResponse.h --- Common/DataModel/PIDResponse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/DataModel/PIDResponse.h b/Common/DataModel/PIDResponse.h index 01d85b6f3db..e48aa6d15d6 100644 --- a/Common/DataModel/PIDResponse.h +++ b/Common/DataModel/PIDResponse.h @@ -611,7 +611,7 @@ DECLARE_SOA_COLUMN(DeDxTunedMc, mcTunedTPCSignal, float); //! TPC signal after T } // namespace mcpidtpc DECLARE_SOA_TABLE(mcTPCTuneOnData, "AOD", "MCTPCTUNEONDATA", mcpidtpc::DeDxTunedMc); -DECLARE_SOA_TABLE(mcTPCTuneOnDataTiny, "AOD", "MCTPCTUNEONDATATINY", mcpidtpc::DeDxTunedMc, o2::soa::Marker<1>); +DECLARE_SOA_TABLE(mcTPCTuneOnDataTiny, "AOD", "MCTPCTODATATINY", mcpidtpc::DeDxTunedMc, o2::soa::Marker<1>); namespace pidtpc {