Skip to content

Commit 413eeb1

Browse files
NucleiTask - Fix O2Lint errors
1 parent ba188f9 commit 413eeb1

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

PWGLF/Tasks/Nuspex/LFNucleiBATask.cxx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
/// \brief Analysis task for the measurement of the coalescence parameter B2/B3 in pp collisions for (anti)deuteron/(anti)helium-3
1616
///
1717
/// \author Giovanni Malfattore <giovanni.malfattore@cern.ch> and Rutuparna Rath <rutuparna.rath@cern.ch>
18+
<<<<<<< HEAD
19+
=======
20+
21+
// o2-linter: disable=name/workflow-file
22+
>>>>>>> 5678d3143 (NucleiTask - Fix O2Lint errors)
1823

1924
#include "PWGLF/DataModel/LFNucleiTables.h"
2025
#include "PWGLF/DataModel/LFParticleIdentification.h"
@@ -237,11 +242,15 @@ struct lfNucleiBATask {
237242

238243
Configurable<bool> enablePtShiftPID{"enablePtShiftPID", true, "Flag to enable wrong PID in tracking pT correction shift"};
239244
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)."};
245+
<<<<<<< HEAD
240246
<<<<<<< HEAD
241247
Configurable<float> cfgPtShiftPID{"cfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"};
242248
=======
243249
Configurable<float> CfgPtShiftPID{"CfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"};
244250
>>>>>>> 4b515a987 (NucleiTask - Fix O2Lint errors)
251+
=======
252+
Configurable<float> cfgPtShiftPID{"cfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"};
253+
>>>>>>> 5678d3143 (NucleiTask - Fix O2Lint errors)
245254

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

@@ -2581,11 +2590,15 @@ struct lfNucleiBATask {
25812590
}
25822591
if (enablePtShiftPID && fShiftPtPID) {
25832592
shiftPtPID = fShiftPtPID->Eval(2 * track.pt());
2593+
<<<<<<< HEAD
25842594
<<<<<<< HEAD
25852595
if (tritonPID && (track.pt() <= cfgPtShiftPID)) {
25862596
=======
25872597
if (tritonPID && (track.pt() <= CfgPtShiftPID)) {
25882598
>>>>>>> 4b515a987 (NucleiTask - Fix O2Lint errors)
2599+
=======
2600+
if (tritonPID && (track.pt() <= cfgPtShiftPID)) {
2601+
>>>>>>> 5678d3143 (NucleiTask - Fix O2Lint errors)
25892602
hePt = track.pt() - shiftPtPID / 2.f;
25902603
antihePt = track.pt() - shiftPtPID / 2.f;
25912604
}

0 commit comments

Comments
 (0)