Skip to content

Commit d69e6b4

Browse files
committed
Please consider the following formatting changes
1 parent 1eca322 commit d69e6b4

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

ALICE3/Core/DelphesO2TrackSmearer.cxx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,14 @@ bool TrackSmearer::loadTable(int pdg, const char* filename, bool forceReload)
106106
return false;
107107
}
108108
bool specialPdgCase = false;
109-
switch(mLUTHeader[ipdg]->pdg) { // Handle special cases
109+
switch (mLUTHeader[ipdg]->pdg) { // Handle special cases
110110
case o2::constants::physics::kAlpha; // Special case: Allow Alpha particles to use He3 LUT
111-
specialPdgCase = (mLUTHeader[ipdg]->pdg == o2::constants::physics::kHelium3);
112-
if (specialPdgCase)
113-
LOG(info) << " --- Alpha particles (PDG " << pdg << ") will use He3 LUT data (PDG " << mLUTHeader[ipdg]->pdg << ")" << std::endl;
114-
break;
115-
default:
111+
specialPdgCase = (mLUTHeader[ipdg]->pdg == o2::constants::physics::kHelium3);
112+
if (specialPdgCase)
113+
LOG(info)
114+
<< " --- Alpha particles (PDG " << pdg << ") will use He3 LUT data (PDG " << mLUTHeader[ipdg]->pdg << ")" << std::endl;
115+
break;
116+
default:
116117
}
117118
if (mLUTHeader[ipdg]->pdg != pdg && !specialPdgCase) {
118119
LOG(info) << " --- LUT header PDG mismatch: expected/detected = " << pdg << "/" << mLUTHeader[ipdg]->pdg << std::endl;

0 commit comments

Comments
 (0)