Skip to content

Commit 22a0447

Browse files
committed
change int to std::size_t
1 parent 021f11f commit 22a0447

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGJE/Tasks/jetTaggerHFQA.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ struct JetTaggerHFQA {
108108
ConfigurableAxis binSigmaLxyz{"binSigmaLxyz", {100, 0., 0.1}, ""};
109109

110110
int numberOfJetFlavourSpecies = 6;
111-
int firstTaggerForTrackCounting = 0;
112-
int secondTaggerForTrackCounting = 1;
113-
int thirdTaggerForTrackCounting = 2;
111+
std::size_t firstTaggerForTrackCounting = 0;
112+
std::size_t secondTaggerForTrackCounting = 1;
113+
std::size_t thirdTaggerForTrackCounting = 2;
114114
float kUnsetJetAreaFraction = -98.0;
115115
float kUnsetConstituentPtMin = -98.0;
116116
float kUnsetConstituentPtMax = 9998.0;

0 commit comments

Comments
 (0)