From d4d78b04f9715cd480e305a4ed1dc1c3e9a423a4 Mon Sep 17 00:00:00 2001 From: ddobrigk Date: Sun, 22 Dec 2024 18:50:04 +0100 Subject: [PATCH] Remove qx, qy: not necessary in derived path --- PWGLF/DataModel/LFStrangenessTables.h | 4 +--- PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx | 4 +--- PWGLF/Tasks/Strangeness/lambdapolsp.cxx | 4 ---- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/PWGLF/DataModel/LFStrangenessTables.h b/PWGLF/DataModel/LFStrangenessTables.h index c9b6e37b1dc..58913d404c4 100644 --- a/PWGLF/DataModel/LFStrangenessTables.h +++ b/PWGLF/DataModel/LFStrangenessTables.h @@ -231,9 +231,7 @@ DECLARE_SOA_TABLE(StraFT0CQVsEv, "AOD", "STRAFT0CQVSEv", //! events used to comp epcalibrationtable::TriggerEventEP); DECLARE_SOA_TABLE(StraZDCSP, "AOD", "STRAZDCSP", //! ZDC SP information spcalibrationtable::TriggerEventSP, - spcalibrationtable::PsiZDCA, spcalibrationtable::PsiZDCC, - spcalibrationtable::QXZDCA, spcalibrationtable::QXZDCC, - spcalibrationtable::QYZDCA, spcalibrationtable::QYZDCC); + spcalibrationtable::PsiZDCA, spcalibrationtable::PsiZDCC); DECLARE_SOA_TABLE(StraStamps_000, "AOD", "STRASTAMPS", //! information for ID-ing mag field if needed bc::RunNumber, timestamp::Timestamp); DECLARE_SOA_TABLE_VERSIONED(StraStamps_001, "AOD", "STRASTAMPS", 1, //! information for ID-ing mag field if needed diff --git a/PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx b/PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx index 950ad90be99..2af0f0d9ef9 100644 --- a/PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx +++ b/PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx @@ -814,9 +814,7 @@ struct strangederivedbuilder { void processZDCSP(soa::Join::iterator const& collision) { StraZDCSP(collision.triggereventsp(), - collision.psiZDCA(), collision.psiZDCC(), - collision.qxZDCA(), collision.qxZDCC(), - collision.qyZDCA(), collision.qyZDCC()); + collision.psiZDCA(), collision.psiZDCC()); } void processFT0MQVectors(soa::Join::iterator const& collision) { diff --git a/PWGLF/Tasks/Strangeness/lambdapolsp.cxx b/PWGLF/Tasks/Strangeness/lambdapolsp.cxx index 362992e6d27..3d07503a827 100644 --- a/PWGLF/Tasks/Strangeness/lambdapolsp.cxx +++ b/PWGLF/Tasks/Strangeness/lambdapolsp.cxx @@ -819,10 +819,6 @@ struct lambdapolsp { //___________________________________________________________________________________________________ // retrieve further info provided by StraZDCSP - auto qxZDCA = collision.qxZDCA(); - auto qxZDCC = collision.qxZDCC(); - auto qyZDCA = collision.qyZDCA(); - auto qyZDCC = collision.qyZDCC(); auto psiZDCC = collision.psiZDCC(); auto psiZDCA = collision.psiZDCA();