Skip to content

Commit 4825a84

Browse files
committed
UpperCamelCase
1 parent 3a4cbd3 commit 4825a84

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Common/Tools/PID/pidTPCModule.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ class pidTPCModule
468468
int versionNumber{};
469469
};
470470

471-
constexpr std::array<NNVersionEntry, 6> nnVersionsDictionary{
471+
constexpr std::array<NNVersionEntry, 6> NNVersionsDictionary{
472472
{{"", 6, 1},
473473
{"1", 6, 1},
474474
{"2", 7, 2},
@@ -553,14 +553,14 @@ class pidTPCModule
553553
const uint64_t predictionSize = outputDimensions * size;
554554

555555
int nnVersion{0};
556-
for (const auto& nnVersionEntry : nnVersionsDictionary) {
556+
for (const auto& nnVersionEntry : NNVersionsDictionary) {
557557
if (networkVersion == nnVersionEntry.versionName && inputDimensions == nnVersionEntry.numberOfFeatures) {
558558
nnVersion = nnVersionEntry.versionNumber;
559559
break;
560560
}
561561
}
562562
if (nnVersion == 0) {
563-
LOG(fatal) << "createNetworkPrediction(): networkVersion '" << networkVersion << "' and number of features " << inputDimensions << " are not compatible according to nnVersionsDictionary";
563+
LOG(fatal) << "createNetworkPrediction(): networkVersion '" << networkVersion << "' and number of features " << inputDimensions << " are not compatible according to NNVersionsDictionary";
564564
}
565565

566566
const int hadronicRateNorm = collsys == CollisionSystemType::kCollSyspp ? HadronicRateNormPp : HadronicRateNormAa;

0 commit comments

Comments
 (0)