Skip to content

Commit 71e51b1

Browse files
committed
Please consider the following formatting changes
1 parent 6ff22e9 commit 71e51b1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PWGCF/Flow/Tasks/flowPidCme.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -312,13 +312,13 @@ struct FillPIDcolums {
312312
pidVectorUpper = pidVectorTPCPtUpper;
313313
pidVectorLower = pidVectorTPCPtLower;
314314
} else {
315-
if(candidate.pt() > cfgPtMaxforTPCOnlyPID && candidate.hasTOF()){
315+
if (candidate.pt() > cfgPtMaxforTPCOnlyPID && candidate.hasTOF()) {
316316
nSigmaToUse = nSigmaCombined;
317317
pidVectorUpper = cfgnSigmaCutRMSUpper.value;
318318
pidVectorLower = cfgnSigmaCutRMSLower.value;
319-
}else if(candidate.pt() > cfgPtMaxforTPCOnlyPID && !candidate.hasTOF() && cfgUseStrictPID){
319+
} else if (candidate.pt() > cfgPtMaxforTPCOnlyPID && !candidate.hasTOF() && cfgUseStrictPID) {
320320
return 0;
321-
}else{
321+
} else {
322322
nSigmaToUse = nSigmaTPC;
323323
pidVectorUpper = cfgnSigmaCutTPCUpper.value;
324324
pidVectorLower = cfgnSigmaCutTPCLower.value;
@@ -457,12 +457,12 @@ struct FillPIDcolums {
457457
}
458458
}
459459
}
460-
if(cfgUseStrictPID){
460+
if (cfgUseStrictPID) {
461461
// Only use the track which was recognized as an unique PID particle
462462
int index = (kIsPr << 2) | (kIsKa << 1) | kIsPi;
463463
const int map[] = {0, 1, 2, 0, 3, 0, 0, 0};
464464
return map[index];
465-
}else{
465+
} else {
466466
if (cfgOpenAllowCrossTrack) {
467467
// one track can be recognized as different PID particles
468468
int index = (kIsPr << 2) | (kIsKa << 1) | kIsPi;

0 commit comments

Comments
 (0)