We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b939cdc commit a05db8fCopy full SHA for a05db8f
PWGHF/HFL/Tasks/taskSingleElectron.cxx
@@ -322,7 +322,7 @@ struct HfTaskSingleElectron {
322
if (mctrack.size()) {
323
auto const& grmothersIdsVec = mctrack.front().mothersIds();
324
if (grmothersIdsVec.empty()) {
325
- static const std::map<int, SourceType> PdgToSource = {
+ static const std::map<int, SourceType> pdgToSource = {
326
{kPi0, fPi0},
327
{kEta, fEta},
328
{kOmega, fOmega},
@@ -332,8 +332,8 @@ struct HfTaskSingleElectron {
332
{kKPlus, fKe3},
333
{kK0Long, fK0l}};
334
335
- auto it = PdgToSource.find(motherPdg);
336
- if (it != PdgToSource.end()) {
+ auto it = pdgToSource.find(motherPdg);
+ if (it != pdgToSource.end()) {
337
return it->second;
338
}
339
return fElse;
0 commit comments