Skip to content

Commit

Permalink
Remove qx, qy: not necessary in derived path
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobrigk committed Dec 22, 2024
1 parent 43d3fc9 commit d4d78b0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
4 changes: 1 addition & 3 deletions PWGLF/DataModel/LFStrangenessTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions PWGLF/TableProducer/Strangeness/strangederivedbuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -814,9 +814,7 @@ struct strangederivedbuilder {
void processZDCSP(soa::Join<aod::Collisions, aod::SPCalibrationTables>::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<aod::Collisions, aod::QvectorFT0Ms>::iterator const& collision)
{
Expand Down
4 changes: 0 additions & 4 deletions PWGLF/Tasks/Strangeness/lambdapolsp.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit d4d78b0

Please sign in to comment.