@@ -118,7 +118,7 @@ DECLARE_SOA_COLUMN(CandidateSign, candidateSign, int8_t); //! Candidat
118118DECLARE_SOA_COLUMN (FlagMc, flagMc, int8_t ); // ! Main MC decay-channel flag; 0 for unmatched candidates
119119DECLARE_SOA_COLUMN (IsCandidateSwapped, isCandidateSwapped, int8_t ); // ! MC-matched prong permutation; -1 for data
120120DECLARE_SOA_COLUMN (HypothesisMask, hypothesisMask, uint8_t ); // ! Bit 0: DeKPi selected; bit 1: PiKDe selected
121- DECLARE_SOA_COLUMN (CandidateGlobalIndex, candidateGlobalIndex, int64_t ); // ! Input candidate index, shared by rows from the same candidate
121+ DECLARE_SOA_COLUMN (CandidateGlobalIndex, candidateGlobalIndex, int64_t ); // ! Input candidate index, shared by rows from the same candidate
122122DECLARE_SOA_COLUMN (OriginMcRec, originMcRec, int8_t ); // ! MC origin for reconstructed candidates
123123DECLARE_SOA_COLUMN (FlagMcDecayChanRec, flagMcDecayChanRec, int8_t ); // ! Resonant MC decay channel for reconstructed candidates
124124DECLARE_SOA_COLUMN (OriginMcGen, originMcGen, int8_t ); // ! MC origin for generated particles
@@ -559,7 +559,7 @@ struct HfTaskCd {
559559 const bool selDeKPi = (candidate.isSelCdToDeKPi () >= selectionFlagCd);
560560 const bool selPiKDe = (candidate.isSelCdToPiKDe () >= selectionFlagCd);
561561 const uint8_t hypothesisMask = static_cast <uint8_t >((selDeKPi ? 0x1 : 0x0 ) |
562- (selPiKDe ? 0x2 : 0x0 ));
562+ (selPiKDe ? 0x2 : 0x0 ));
563563 const int64_t candidateGlobalIndex = candidate.globalIndex ();
564564 auto prong0 = candidate.template prong0_as <HFTracksMc>();
565565 auto prong1 = candidate.template prong1_as <HFTracksMc>();
@@ -828,7 +828,7 @@ struct HfTaskCd {
828828 const bool selDeKPi = (candidate.isSelCdToDeKPi () >= selectionFlagCd);
829829 const bool selPiKDe = (candidate.isSelCdToPiKDe () >= selectionFlagCd);
830830 const uint8_t hypothesisMask = static_cast <uint8_t >((selDeKPi ? 0x1 : 0x0 ) |
831- (selPiKDe ? 0x2 : 0x0 ));
831+ (selPiKDe ? 0x2 : 0x0 ));
832832 const int64_t candidateGlobalIndex = candidate.globalIndex ();
833833 auto prong0 = candidate.template prong0_as <TrackType>();
834834 auto prong1 = candidate.template prong1_as <TrackType>();
0 commit comments