From e27ec9ee4c5bbfd99204d97c639a503eb506f6cc Mon Sep 17 00:00:00 2001 From: Xufei Xue Date: Tue, 13 Jan 2026 10:16:55 +0000 Subject: [PATCH 1/2] Add silenceV0DataWarning: suppress V0Data warning logs to limit log size --- PWGHF/TableProducer/candidateCreatorCascade.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PWGHF/TableProducer/candidateCreatorCascade.cxx b/PWGHF/TableProducer/candidateCreatorCascade.cxx index a0bb58dfd4c..e5c495f27b0 100644 --- a/PWGHF/TableProducer/candidateCreatorCascade.cxx +++ b/PWGHF/TableProducer/candidateCreatorCascade.cxx @@ -233,7 +233,9 @@ struct HfCandidateCreatorCascade { covV[i] = v0row.positionCovMat()[i]; } } else { - LOGF(warning, "V0Data not there for V0 %d in HF cascade %d. Skipping candidate.", casc.v0Id(), casc.globalIndex()); + if (!silenceV0DataWarning) { + LOGF(warning, "V0Data not there for V0 %d in HF cascade %d. Skipping candidate.", casc.v0Id(), casc.globalIndex()); + } continue; // this was inadequately linked, should not happen } From 7ebe230514b6f0958925b432a9f213b8a9d06bdd Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 13 Jan 2026 10:30:08 +0000 Subject: [PATCH 2/2] Please consider the following formatting changes --- PWGHF/TableProducer/candidateCreatorCascade.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGHF/TableProducer/candidateCreatorCascade.cxx b/PWGHF/TableProducer/candidateCreatorCascade.cxx index e5c495f27b0..63ff8a32d41 100644 --- a/PWGHF/TableProducer/candidateCreatorCascade.cxx +++ b/PWGHF/TableProducer/candidateCreatorCascade.cxx @@ -234,7 +234,7 @@ struct HfCandidateCreatorCascade { } } else { if (!silenceV0DataWarning) { - LOGF(warning, "V0Data not there for V0 %d in HF cascade %d. Skipping candidate.", casc.v0Id(), casc.globalIndex()); + LOGF(warning, "V0Data not there for V0 %d in HF cascade %d. Skipping candidate.", casc.v0Id(), casc.globalIndex()); } continue; // this was inadequately linked, should not happen }