Skip to content

Commit 144c469

Browse files
NucleiTask - Rename variable
1 parent 7bcd1c2 commit 144c469

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGLF/Tasks/Nuspex/lfNucleiBATask.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ struct lfNucleiBATask {
239239

240240
Configurable<bool> enablePtShiftPID{"enablePtShiftPID", true, "Flag to enable wrong PID in tracking pT correction shift"};
241241
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)."};
242-
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"};
243243

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

@@ -2605,7 +2605,7 @@ struct lfNucleiBATask {
26052605
if (enablePtShiftPID && fShiftPtPID) {
26062606
shiftPtPID = fShiftPtPID->Eval(2 * track.pt());
26072607

2608-
if (tritonPID && (track.pt() <= CfgPtShiftPID)) {
2608+
if (tritonPID && (track.pt() <= cfgPtShiftPID)) {
26092609
hePt = track.pt() - shiftPtPID / 2.f;
26102610
antihePt = track.pt() - shiftPtPID / 2.f;
26112611
}

0 commit comments

Comments
 (0)