Skip to content

Commit 2991691

Browse files
Merge pull request #83 from alibuild/alibot-cleanup-17761
[PWGHF] Please consider the following formatting changes to #17761
2 parents 0fd546b + 9ed5b9f commit 2991691

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGHF/D2H/Tasks/taskCd.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ DECLARE_SOA_COLUMN(CandidateSign, candidateSign, int8_t); //! Candidat
118118
DECLARE_SOA_COLUMN(FlagMc, flagMc, int8_t); //! Main MC decay-channel flag; 0 for unmatched candidates
119119
DECLARE_SOA_COLUMN(IsCandidateSwapped, isCandidateSwapped, int8_t); //! MC-matched prong permutation; -1 for data
120120
DECLARE_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
122122
DECLARE_SOA_COLUMN(OriginMcRec, originMcRec, int8_t); //! MC origin for reconstructed candidates
123123
DECLARE_SOA_COLUMN(FlagMcDecayChanRec, flagMcDecayChanRec, int8_t); //! Resonant MC decay channel for reconstructed candidates
124124
DECLARE_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

Comments
 (0)