Skip to content

Commit 1c68b88

Browse files
author
Mattia Faggin
committed
Fix O2linter issue.
1 parent a942f8c commit 1c68b88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ struct HfCandidateCreatorSigmac0plusplus {
143143
softPiCuts.SetMaxChi2PerClusterITS(softPiChi2Max);
144144
// ITS hitmap
145145
std::set<uint8_t> setSoftPiItsHitMap; // = {};
146-
constexpr std::size_t itsLayers = 7;
147-
for (std::size_t idItsLayer = 0u; idItsLayer < itsLayers; idItsLayer++) {
146+
constexpr std::size_t NLayersIts = 7;
147+
for (std::size_t idItsLayer = 0u; idItsLayer < NLayersIts; idItsLayer++) {
148148
if (TESTBIT(softPiItsHitMap, idItsLayer)) {
149149
setSoftPiItsHitMap.insert(static_cast<uint8_t>(idItsLayer));
150150
}

0 commit comments

Comments
 (0)