Skip to content

Commit b585e19

Browse files
committed
Rename configurable
1 parent 5628bab commit b585e19

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

PWGHF/TableProducer/candidateCreator2Prong.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ struct HfCandidateCreator2ProngExpressions {
694694
Configurable<bool> rejectBackground{"rejectBackground", true, "Reject particles from background events"};
695695
Configurable<bool> matchKinkedDecayTopology{"matchKinkedDecayTopology", false, "Match also candidates with tracks that decay with kinked topology"};
696696
Configurable<bool> matchInteractionsWithMaterial{"matchInteractionsWithMaterial", false, "Match also candidates with tracks that interact with material"};
697-
Configurable<bool> matchCorrBkgs{"matchCorrBkgs", false, "Match correlated background candidates"};
697+
Configurable<bool> matchCorrelatedBackgrounds{"matchCorrelatedBackgrounds", false, "Match correlated background candidates"};
698698

699699
HfEventSelectionMc hfEvSelMc; // mc event selection and monitoring
700700

@@ -775,7 +775,7 @@ struct HfCandidateCreator2ProngExpressions {
775775
}
776776
std::vector<int> idxBhadMothers{};
777777

778-
if (matchCorrBkgs) {
778+
if (matchCorrelatedBackgrounds) {
779779
indexRec = -1; // Index of the matched reconstructed candidate
780780
constexpr int FinalStateDepth = 2;
781781
constexpr int ResoDepth = 1;

PWGHF/TableProducer/candidateCreator3Prong.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ struct HfCandidateCreator3ProngExpressions {
851851
Configurable<bool> rejectBackground{"rejectBackground", true, "Reject particles from background events"};
852852
Configurable<bool> matchKinkedDecayTopology{"matchKinkedDecayTopology", false, "Match also candidates with tracks that decay with kinked topology"};
853853
Configurable<bool> matchInteractionsWithMaterial{"matchInteractionsWithMaterial", false, "Match also candidates with tracks that interact with material"};
854-
Configurable<bool> matchCorrBkgs{"matchCorrBkgs", false, "Match correlated background candidates"};
854+
Configurable<bool> matchCorrelatedBackgrounds{"matchCorrelatedBackgrounds", false, "Match correlated background candidates"};
855855
Configurable<std::vector<int>> mothersCorrBkgsPdgs{"mothersCorrBkgsPdgs", {Pdg::kDPlus, Pdg::kDS, Pdg::kDStar, Pdg::kLambdaCPlus, Pdg::kXiCPlus}, "PDG codes of the mother particles of correlated background candidates"};
856856

857857
constexpr static std::size_t NDaughtersResonant{2u};
@@ -946,7 +946,7 @@ struct HfCandidateCreator3ProngExpressions {
946946
}
947947
}
948948

949-
if (matchCorrBkgs) {
949+
if (matchCorrelatedBackgrounds) {
950950
indexRec = -1; // Index of the matched reconstructed candidate
951951
constexpr int MaxDepth = 2; // Depth for final state matching
952952
constexpr int ResoMaxDepth = 1; // Depth for resonant decay matching

PWGHF/Utils/utilsMcGen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void fillMcMatchGen2Prong(T const& mcParticles, U const& mcParticlesPerMcColl, V
5454
rowMcMatchGen(flag, origin, channel, -1);
5555
continue;
5656
}
57-
if (matchCorrBkgs) {
57+
if (matchCorrelatedBackgrounds) {
5858
constexpr int MaxDepth = 2; // Depth for final state matching
5959
constexpr int ResoMaxDepth = 1; // Depth for resonant decay matching
6060
bool matched = false;

0 commit comments

Comments
 (0)