|
15 | 15 | /// \brief Analysis task for the measurement of the coalescence parameter B2/B3 in pp collisions for (anti)deuteron/(anti)helium-3 |
16 | 16 | /// |
17 | 17 | /// \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) |
18 | 23 |
|
19 | 24 | #include "PWGLF/DataModel/LFNucleiTables.h" |
20 | 25 | #include "PWGLF/DataModel/LFParticleIdentification.h" |
@@ -237,11 +242,15 @@ struct lfNucleiBATask { |
237 | 242 |
|
238 | 243 | Configurable<bool> enablePtShiftPID{"enablePtShiftPID", true, "Flag to enable wrong PID in tracking pT correction shift"}; |
239 | 244 | 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 |
240 | 246 | <<<<<<< HEAD |
241 | 247 | Configurable<float> cfgPtShiftPID{"cfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"}; |
242 | 248 | ======= |
243 | 249 | Configurable<float> CfgPtShiftPID{"CfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"}; |
244 | 250 | >>>>>>> 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) |
245 | 254 |
|
246 | 255 | Configurable<bool> enableCentrality{"enableCentrality", true, "Flag to enable centrality 3D histos)"}; |
247 | 256 |
|
@@ -2581,11 +2590,15 @@ struct lfNucleiBATask { |
2581 | 2590 | } |
2582 | 2591 | if (enablePtShiftPID && fShiftPtPID) { |
2583 | 2592 | shiftPtPID = fShiftPtPID->Eval(2 * track.pt()); |
| 2593 | +<<<<<<< HEAD |
2584 | 2594 | <<<<<<< HEAD |
2585 | 2595 | if (tritonPID && (track.pt() <= cfgPtShiftPID)) { |
2586 | 2596 | ======= |
2587 | 2597 | if (tritonPID && (track.pt() <= CfgPtShiftPID)) { |
2588 | 2598 | >>>>>>> 4b515a987 (NucleiTask - Fix O2Lint errors) |
| 2599 | +======= |
| 2600 | + if (tritonPID && (track.pt() <= cfgPtShiftPID)) { |
| 2601 | +>>>>>>> 5678d3143 (NucleiTask - Fix O2Lint errors) |
2589 | 2602 | hePt = track.pt() - shiftPtPID / 2.f; |
2590 | 2603 | antihePt = track.pt() - shiftPtPID / 2.f; |
2591 | 2604 | } |
|
0 commit comments