Skip to content

Commit a05db8f

Browse files
committed
Implement expert comments
1 parent b939cdc commit a05db8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/HFL/Tasks/taskSingleElectron.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ struct HfTaskSingleElectron {
322322
if (mctrack.size()) {
323323
auto const& grmothersIdsVec = mctrack.front().mothersIds();
324324
if (grmothersIdsVec.empty()) {
325-
static const std::map<int, SourceType> PdgToSource = {
325+
static const std::map<int, SourceType> pdgToSource = {
326326
{kPi0, fPi0},
327327
{kEta, fEta},
328328
{kOmega, fOmega},
@@ -332,8 +332,8 @@ struct HfTaskSingleElectron {
332332
{kKPlus, fKe3},
333333
{kK0Long, fK0l}};
334334

335-
auto it = PdgToSource.find(motherPdg);
336-
if (it != PdgToSource.end()) {
335+
auto it = pdgToSource.find(motherPdg);
336+
if (it != pdgToSource.end()) {
337337
return it->second;
338338
}
339339
return fElse;

0 commit comments

Comments
 (0)