Skip to content

Commit d74428b

Browse files
authored
bug fixed: table mismatch (AliceO2Group#4353)
1 parent 9ea1358 commit d74428b

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

PWGHF/TableProducer/treeCreatorXicToPKPi.cxx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ DECLARE_SOA_COLUMN(ImpactParameterNormalised1, impactParameterNormalised1, float
4444
DECLARE_SOA_COLUMN(PtProng2, ptProng2, float);
4545
DECLARE_SOA_COLUMN(PProng2, pProng2, float);
4646
DECLARE_SOA_COLUMN(ImpactParameterNormalised2, impactParameterNormalised2, float);
47-
DECLARE_SOA_COLUMN(CandidateSelFlag, candidateSelFlag, int8_t);
4847
DECLARE_SOA_COLUMN(M, m, float);
4948
DECLARE_SOA_COLUMN(Pt, pt, float);
5049
DECLARE_SOA_COLUMN(P, p, float);
@@ -80,7 +79,6 @@ DECLARE_SOA_COLUMN(Ct, ct, float);
8079
DECLARE_SOA_COLUMN(FlagMc, flagMc, int8_t);
8180
DECLARE_SOA_COLUMN(OriginMcRec, originMcRec, int8_t);
8281
DECLARE_SOA_COLUMN(OriginMcGen, originMcGen, int8_t);
83-
DECLARE_SOA_COLUMN(IsCandidateSwapped, isCandidateSwapped, int8_t);
8482
DECLARE_SOA_INDEX_COLUMN_FULL(Candidate, candidate, int, HfCand3Prong, "_0");
8583
// Events
8684
DECLARE_SOA_COLUMN(IsEventReject, isEventReject, int);
@@ -117,16 +115,16 @@ DECLARE_SOA_TABLE(HfCandXicLites, "AOD", "HFCANDXICLITE",
117115
full::NSigTofPi2,
118116
full::NSigTofKa2,
119117
full::NSigTofPr2,
120-
full::CandidateSelFlag,
118+
hf_sel_candidate_xic::IsSelXicToPKPi,
119+
hf_sel_candidate_xic::IsSelXicToPiKP,
121120
full::M,
122121
full::Pt,
123122
full::Cpa,
124123
full::CpaXY,
125124
full::Eta,
126125
full::Phi,
127126
full::FlagMc,
128-
full::OriginMcRec,
129-
full::IsCandidateSwapped)
127+
full::OriginMcRec)
130128

131129
DECLARE_SOA_TABLE(HfCandXicFulls, "AOD", "HFCANDXICFULL",
132130
full::CollisionId,
@@ -186,7 +184,8 @@ DECLARE_SOA_TABLE(HfCandXicFulls, "AOD", "HFCANDXICFULL",
186184
full::NSigTofPi2,
187185
full::NSigTofKa2,
188186
full::NSigTofPr2,
189-
full::CandidateSelFlag,
187+
hf_sel_candidate_xic::IsSelXicToPKPi,
188+
hf_sel_candidate_xic::IsSelXicToPiKP,
190189
full::M,
191190
full::Pt,
192191
full::P,
@@ -199,7 +198,6 @@ DECLARE_SOA_TABLE(HfCandXicFulls, "AOD", "HFCANDXICFULL",
199198
full::E,
200199
full::FlagMc,
201200
full::OriginMcRec,
202-
full::IsCandidateSwapped,
203201
full::CandidateId);
204202

205203
DECLARE_SOA_TABLE(HfCandXicFullEvs, "AOD", "HFCANDXICFULLEV",
@@ -340,6 +338,7 @@ struct HfTreeCreatorXicToPKPi {
340338
candidate.phi(),
341339
flagMc,
342340
originMc);
341+
343342
} else {
344343
rowCandidateFull(
345344
candidate.collisionId(),

0 commit comments

Comments
 (0)