|
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 | | -/// |
| 18 | + |
| 19 | +// o2-linter: disable=name/workflow-file |
19 | 20 |
|
20 | 21 | #include "PWGLF/DataModel/LFNucleiTables.h" |
21 | 22 | #include "PWGLF/DataModel/LFParticleIdentification.h" |
@@ -92,8 +93,8 @@ struct LFNucleiBATask { |
92 | 93 | Configurable<bool> enableHe{"enableHe", true, "Flag to enable helium-3 analysis."}; |
93 | 94 | Configurable<bool> enableAl{"enableAl", true, "Flag to enable alpha analysis."}; |
94 | 95 |
|
95 | | - Configurable<bool> enableTrackingEff{"enableTrackingEff", 0, "Flag to enable tracking efficiency histos."}; |
96 | | - Configurable<std::string> ccdbUrl{"ccdb-url", "http://alice-ccdb.cern.ch", "url of the ccdb repository"}; |
| 96 | + Configurable<bool> enableTrackingEff{"enableTrackingEff", false, "Flag to enable tracking efficiency histos."}; |
| 97 | + Configurable<std::string> ccdbUrl{"ccdb-url", "http://alice-ccdb.cern.ch", "url of the ccdb repository"}; // o2-linter: disable=name/configurable (fast fix) |
97 | 98 |
|
98 | 99 | // Set the triggered events skimming scheme |
99 | 100 | struct : ConfigurableGroup { |
@@ -238,7 +239,7 @@ struct LFNucleiBATask { |
238 | 239 |
|
239 | 240 | Configurable<bool> enablePtShiftPID{"enablePtShiftPID", true, "Flag to enable wrong PID in tracking pT correction shift"}; |
240 | 241 | 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)."}; |
241 | | - Configurable<float> CfgPtShiftPID{"CfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"}; |
| 242 | + Configurable<float> cfgPtShiftPID{"cfgPtShiftPID", 1.25f, "Default upper limit for PID pt-shift correction"}; |
242 | 243 |
|
243 | 244 | Configurable<bool> enableCentrality{"enableCentrality", true, "Flag to enable centrality 3D histos)"}; |
244 | 245 |
|
@@ -2578,7 +2579,7 @@ struct LFNucleiBATask { |
2578 | 2579 | } |
2579 | 2580 | if (enablePtShiftPID && fShiftPtPID) { |
2580 | 2581 | shiftPtPID = fShiftPtPID->Eval(2 * track.pt()); |
2581 | | - if (tritonPID && (track.pt() <= CfgPtShiftPID)) { |
| 2582 | + if (tritonPID && (track.pt() <= cfgPtShiftPID)) { |
2582 | 2583 | hePt = track.pt() - shiftPtPID / 2.f; |
2583 | 2584 | antihePt = track.pt() - shiftPtPID / 2.f; |
2584 | 2585 | } |
|
0 commit comments