Skip to content

Commit 9956e98

Browse files
committed
UpperCamelCase
2 parents 7ea56bc + 4825a84 commit 9956e98

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},
@@ -552,14 +552,14 @@ class pidTPCModule
552552
const uint64_t predictionSize = outputDimensions * size;
553553

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

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

0 commit comments

Comments
 (0)