Skip to content

Commit ba188f9

Browse files
NucleiTask - Fix O2Lint errors
1 parent c229299 commit ba188f9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,11 @@ struct lfNucleiBATask {
237237

238238
Configurable<bool> enablePtShiftPID{"enablePtShiftPID", true, "Flag to enable wrong PID in tracking pT correction shift"};
239239
Configurable<std::vector<float>> parShiftPtPID{"parShiftPtPID", {0.0f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f, 0.1f}, "Parameters for helium3-Pt wrong pid shift (if enabled)."};
240+
<<<<<<< HEAD
240241
Configurable<float> cfgPtShiftPID{"cfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"};
242+
=======
243+
Configurable<float> CfgPtShiftPID{"CfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"};
244+
>>>>>>> 4b515a987 (NucleiTask - Fix O2Lint errors)
241245

242246
Configurable<bool> enableCentrality{"enableCentrality", true, "Flag to enable centrality 3D histos)"};
243247

@@ -2577,7 +2581,11 @@ struct lfNucleiBATask {
25772581
}
25782582
if (enablePtShiftPID && fShiftPtPID) {
25792583
shiftPtPID = fShiftPtPID->Eval(2 * track.pt());
2584+
<<<<<<< HEAD
25802585
if (tritonPID && (track.pt() <= cfgPtShiftPID)) {
2586+
=======
2587+
if (tritonPID && (track.pt() <= CfgPtShiftPID)) {
2588+
>>>>>>> 4b515a987 (NucleiTask - Fix O2Lint errors)
25812589
hePt = track.pt() - shiftPtPID / 2.f;
25822590
antihePt = track.pt() - shiftPtPID / 2.f;
25832591
}

0 commit comments

Comments
 (0)