Skip to content

Commit 93b1062

Browse files
committed
change int to std::size_t
1 parent edb921f commit 93b1062

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
@@ -113,9 +113,9 @@ struct JetTaggerHFQA {
113113
ConfigurableAxis binSigmaLxyz{"binSigmaLxyz", {100, 0., 0.1}, ""};
114114

115115
int numberOfJetFlavourSpecies = 6;
116-
int firstTaggerForTrackCounting = 0;
117-
int secondTaggerForTrackCounting = 1;
118-
int thirdTaggerForTrackCounting = 2;
116+
std::size_t firstTaggerForTrackCounting = 0;
117+
std::size_t secondTaggerForTrackCounting = 1;
118+
std::size_t thirdTaggerForTrackCounting = 2;
119119
float kUnsetJetAreaFraction = -98.0;
120120
float kUnsetConstituentPtMin = -98.0;
121121
float kUnsetConstituentPtMax = 9998.0;

0 commit comments

Comments
 (0)