Skip to content

Commit 5218f5d

Browse files
authored
Remove 'this->' from function name cases
1 parent 58e23e0 commit 5218f5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PWGCF/Flow/Tasks/pidFlowPtCorr.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,19 +1055,19 @@ struct PidFlowPtCorr {
10551055
void fillEventCountHelper(MyFunctionName funcName, double position)
10561056
{
10571057
switch (funcName) {
1058-
case this->MyFunctionName::funcProcessData:
1058+
case MyFunctionName::funcProcessData:
10591059
this->registry.fill(HIST("hEventCount/processData"), position);
10601060
break;
1061-
case this->MyFunctionName::funcDetectorPidQA:
1061+
case MyFunctionName::funcDetectorPidQA:
10621062
this->registry.fill(HIST("hEventCount/detectorPidQA"), position);
10631063
break;
1064-
case this->MyFunctionName::funcFillCorrectionGraph:
1064+
case MyFunctionName::funcFillCorrectionGraph:
10651065
this->registry.fill(HIST("hEventCount/fillCorrectionGraph"), position);
10661066
break;
1067-
case this->MyFunctionName::funcProcessReco:
1067+
case MyFunctionName::funcProcessReco:
10681068
this->registry.fill(HIST("hEventCount/processReco"), position);
10691069
break;
1070-
case this->MyFunctionName::funcProcessSim:
1070+
case MyFunctionName::funcProcessSim:
10711071
this->registry.fill(HIST("hEventCount/processSim"), position);
10721072
break;
10731073

0 commit comments

Comments
 (0)