2121#include " Common/Core/TableHelper.h"
2222#include " Common/DataModel/EventSelection.h"
2323#include " Common/DataModel/FT0Corrected.h"
24- #include " Common/DataModel/PIDResponse.h"
2524#include " Common/DataModel/PIDResponseTOF.h"
2625#include " Common/TableProducer/PID/pidTOFBase.h"
2726
@@ -870,32 +869,28 @@ struct McPidTof {
870869 if (fullTable) {
871870 tablePIDFullPi (-999 .f , -999 .f );
872871 } else {
873- aod::pidutils::packInTable<aod::pidtof_tiny::binning>(-999 .f ,
874- tablePIDPi);
872+ aod::pidtof_tiny::binning::packInTable (-999 .f , tablePIDPi);
875873 }
876874 break ;
877875 case IdxKa:
878876 if (fullTable) {
879877 tablePIDFullKa (-999 .f , -999 .f );
880878 } else {
881- aod::pidutils::packInTable<aod::pidtof_tiny::binning>(-999 .f ,
882- tablePIDKa);
879+ aod::pidtof_tiny::binning::packInTable (-999 .f , tablePIDKa);
883880 }
884881 break ;
885882 case IdxPr:
886883 if (fullTable) {
887884 tablePIDFullPr (-999 .f , -999 .f );
888885 } else {
889- aod::pidutils::packInTable<aod::pidtof_tiny::binning>(-999 .f ,
890- tablePIDPr);
886+ aod::pidtof_tiny::binning::packInTable (-999 .f , tablePIDPr);
891887 }
892888 break ;
893889 case IdxDe:
894890 if (fullTable) {
895891 tablePIDFullDe (-999 .f , -999 .f );
896892 } else {
897- aod::pidutils::packInTable<aod::pidtof_tiny::binning>(-999 .f ,
898- tablePIDDe);
893+ aod::pidtof_tiny::binning::packInTable (-999 .f , tablePIDDe);
899894 }
900895 break ;
901896 default :
@@ -1021,7 +1016,7 @@ struct McPidTof {
10211016 nSigma = applyMcRecalib (pidId, trk.pt (), nSigma);
10221017 }
10231018 }
1024- aod::pidutils::packInTable<aod:: pidtof_tiny::binning> (nSigma, tablePIDPi);
1019+ aod::pidtof_tiny::binning::packInTable (nSigma, tablePIDPi);
10251020 break ;
10261021 }
10271022 case IdxKa: {
@@ -1031,7 +1026,7 @@ struct McPidTof {
10311026 nSigma = applyMcRecalib (pidId, trk.pt (), nSigma);
10321027 }
10331028 }
1034- aod::pidutils::packInTable<aod:: pidtof_tiny::binning> (nSigma, tablePIDKa);
1029+ aod::pidtof_tiny::binning::packInTable (nSigma, tablePIDKa);
10351030 break ;
10361031 }
10371032 case IdxPr: {
@@ -1041,7 +1036,7 @@ struct McPidTof {
10411036 nSigma = applyMcRecalib (pidId, trk.pt (), nSigma);
10421037 }
10431038 }
1044- aod::pidutils::packInTable<aod:: pidtof_tiny::binning> (nSigma, tablePIDPr);
1039+ aod::pidtof_tiny::binning::packInTable (nSigma, tablePIDPr);
10451040 break ;
10461041 }
10471042 case IdxDe: {
@@ -1051,7 +1046,7 @@ struct McPidTof {
10511046 nSigma = applyMcRecalib (IdxPr, trk.pt (), nSigma); // FIXME: currently postcalibrations for protons applied to deuterons, to be checked
10521047 }
10531048 }
1054- aod::pidutils::packInTable<aod:: pidtof_tiny::binning> (nSigma, tablePIDDe);
1049+ aod::pidtof_tiny::binning::packInTable (nSigma, tablePIDDe);
10551050 break ;
10561051 }
10571052 default :
0 commit comments