Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ALICE3/Core/DelphesO2TrackSmearer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ bool TrackSmearer::loadTable(int pdg, const char* filename, bool forceReload)
return false;
}
bool specialPdgCase = false;
switch (pdg) { // Handle special cases
case o2::constants::physics::kAlpha: // Special case: Allow Alpha particles to use He3 LUT
switch (pdg) { // Handle special cases
case o2::constants::physics::kAlpha: // Special case: Allow Alpha particles to use He3 LUT
specialPdgCase = (mLUTHeader[ipdg]->pdg == o2::constants::physics::kHelium3);
if (specialPdgCase)
LOG(info)
<< " --- Alpha particles (PDG " << pdg << ") will use He3 LUT data (PDG " << mLUTHeader[ipdg]->pdg << ")" << std::endl;
<< " --- Alpha particles (PDG " << pdg << ") will use He3 LUT data (PDG " << mLUTHeader[ipdg]->pdg << ")" << std::endl;
break;
default:
break;
Expand Down
Loading