@@ -295,7 +295,7 @@ struct HfCandidateSelectorToXiPiQa {
295295 // Selection on LF related informations
296296 // returns true if all cuts are passed
297297 template <int svReco, typename T>
298- bool SelectOnLF (const T& candidate, const int & inputPtBin)
298+ bool selectOnLf (const T& candidate, const int & inputPtBin)
299299 {
300300
301301 registry.fill (HIST (" hSelStatusLf" ), 0.0 );
@@ -442,7 +442,7 @@ struct HfCandidateSelectorToXiPiQa {
442442 // Apply cuts with charm baryon & charm bachelor related informations
443443 // returns true if all cuts are passed
444444 template <int svReco, typename T>
445- bool SelectOnHF (const T& candidate, const int & inputPtBin)
445+ bool selectOnHf (const T& candidate, const int & inputPtBin)
446446 {
447447
448448 registry.fill (HIST (" hSelStatusHf" ), 0.0 );
@@ -561,8 +561,8 @@ struct HfCandidateSelectorToXiPiQa {
561561 }
562562
563563 // Topological selection
564- const bool selectionResOnLF = SelectOnLF <svReco>(candidate, pTBin);
565- const bool selectionResOnHF = SelectOnHF <svReco>(candidate, pTBin);
564+ const bool selectionResOnLF = selectOnLf <svReco>(candidate, pTBin);
565+ const bool selectionResOnHF = selectOnHf <svReco>(candidate, pTBin);
566566 if (!selectionResOnLF || !selectionResOnHF) {
567567 resultSelections = false ;
568568 }
0 commit comments