Skip to content

Commit e3210c9

Browse files
committed
rename Configurable
1 parent d1704b2 commit e3210c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGHF/D2H/Tasks/taskLc.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ struct HfTaskLc {
141141
Configurable<std::vector<double>> binsPt{"binsPt", std::vector<double>{hf_cuts_lc_to_p_k_pi::vecBinsPt}, "pT bin limits"};
142142
// ThnSparse for ML outputScores and Vars
143143
Configurable<bool> fillTHn{"fillTHn", false, "fill THn"};
144-
Configurable<bool> fillUPCTreeLite{"fillUPCTreeLite", false, "fill THn"};
144+
Configurable<bool> fillTreeOnlySingleGap{"fillTreeOnlySingleGap", false, "fill THn"};
145145
Configurable<bool> storeOccupancy{"storeOccupancy", true, "Flag to store occupancy information"};
146146
Configurable<int> occEstimator{"occEstimator", 2, "Occupancy estimation (None: 0, ITS: 1, FT0C: 2)"};
147147
Configurable<bool> storeProperLifetime{"storeProperLifetime", false, "Flag to store proper lifetime"};
@@ -859,7 +859,7 @@ struct HfTaskLc {
859859
outputFD = mlProb[MlClassNonPrompt]; /// non-prompt score
860860
}
861861
/// Fill the ML outputScores and variables of candidate
862-
if (fillUPCTreeLite) {
862+
if (fillTreeOnlySingleGap) {
863863
if (gap == o2::aod::sgselector::TrueGap::SingleGapA || gap == o2::aod::sgselector::TrueGap::SingleGapC) {
864864
rowCandUpcBdt(massLc, pt, outputBkg, outputPrompt, outputFD, static_cast<float>(numPvContributors), static_cast<float>(fitInfo.ampFV0A), static_cast<float>(fitInfo.ampFT0A), static_cast<float>(fitInfo.ampFT0C), static_cast<float>(zdcEnergyZNA), static_cast<float>(zdcEnergyZNC), static_cast<float>(zdcTimeZNA), static_cast<float>(zdcTimeZNC));
865865
}
@@ -868,7 +868,7 @@ struct HfTaskLc {
868868
}
869869

870870
} else {
871-
if (fillUPCTreeLite) {
871+
if (fillTreeOnlySingleGap) {
872872
if (gap == o2::aod::sgselector::TrueGap::SingleGapA || gap == o2::aod::sgselector::TrueGap::SingleGapC) {
873873
rowCandUpc(massLc, pt, ptProng0, ptProng1, ptProng2, chi2PCA, decayLength, cpa, static_cast<float>(numPvContributors), static_cast<float>(fitInfo.ampFV0A), static_cast<float>(fitInfo.ampFT0A), static_cast<float>(fitInfo.ampFT0C), static_cast<float>(zdcEnergyZNA), static_cast<float>(zdcEnergyZNC), static_cast<float>(zdcTimeZNA), static_cast<float>(zdcTimeZNC));
874874
}

0 commit comments

Comments
 (0)